[core] Reduce log level to DEBUG for binding to events and certain clock messages

This commit is contained in:
Visytel
2020-02-12 06:58:33 +11:00
committed by GitHub
parent 4f122559b6
commit 78eb8f61b3
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ SWITCH_DECLARE(int) EventConsumer::bind(const char *event_name, const char *subc
if (node_index <= SWITCH_EVENT_ALL &&
switch_event_bind_removable(__FILE__, event_id, subclass_name, event_handler, this, &enodes[node_index]) == SWITCH_STATUS_SUCCESS) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "bound to %s %s\n", event_name, switch_str_nil(subclass_name));
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "bound to %s %s\n", event_name, switch_str_nil(subclass_name));
node_index++;
return 1;
}