From: Chris Rienzo Date: Thu, 6 Jun 2019 01:10:22 +0000 (-0400) Subject: FS-11878 [core] change log level of dialplan EXECUTE X-Git-Tag: v1.10.0~84 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4b337f1117b35a81616d41c95636691f1ac3e56c;p=thirdparty%2Ffreeswitch.git FS-11878 [core] change log level of dialplan EXECUTE --- diff --git a/src/switch_core_session.c b/src/switch_core_session.c index 8a4ca0663a..ca58566b2f 100644 --- a/src/switch_core_session.c +++ b/src/switch_core_session.c @@ -2822,10 +2822,10 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_exec(switch_core_session_t * if ( switch_core_test_flag(SCF_DIALPLAN_TIMESTAMPS) ) { - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "EXECUTE [depth=%d] %s %s(%s)\n", + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "EXECUTE [depth=%d] %s %s(%s)\n", switch_core_session_stack_count(session, 0), switch_channel_get_name(session->channel), app, switch_str_nil(expanded)); } else { - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG_CLEAN(session), SWITCH_LOG_DEBUG, "EXECUTE [depth=%d] %s %s(%s)\n", + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG_CLEAN(session), SWITCH_LOG_INFO, "EXECUTE [depth=%d] %s %s(%s)\n", switch_core_session_stack_count(session, 0), switch_channel_get_name(session->channel), app, switch_str_nil(expanded)); }