From: Mike Jerris Date: Tue, 9 Apr 2019 21:35:47 +0000 (-0600) Subject: FS-11774: [mod_conference] Quiet down logs from conference moderator command over... X-Git-Tag: v1.8.6~1^2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c786efa9aaf5f893d03f17eb0150bea3a68f1c41;p=thirdparty%2Ffreeswitch.git FS-11774: [mod_conference] Quiet down logs from conference moderator command over verto --- diff --git a/src/mod/applications/mod_conference/conference_event.c b/src/mod/applications/mod_conference/conference_event.c index d966a7310b..083dd35490 100644 --- a/src/mod/applications/mod_conference/conference_event.c +++ b/src/mod/applications/mod_conference/conference_event.c @@ -398,7 +398,7 @@ void conference_event_mod_channel_handler(const char *event_channel, cJSON *json } else if (exec) { cJSON_AddItemToObject(jdata, "conf-command", cJSON_CreateString(exec)); cJSON_AddItemToObject(jdata, "response", cJSON_CreateString((char *)stream.data)); - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ALERT,"RES [%s][%s]\n", exec, (char *)stream.data); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG,"RES [%s][%s]\n", exec, (char *)stream.data); } else { cJSON_AddItemToObject(jdata, "error", cJSON_CreateString("Invalid Command")); }