From fdea35081794382125cf9702219751e26ed94726 Mon Sep 17 00:00:00 2001 From: Mike Jerris Date: Thu, 11 Oct 2018 18:28:59 +0000 Subject: [PATCH] FS-11454: [core] Add error log when attempting to route to an invalid dialplan interface --- src/switch_core_state_machine.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/switch_core_state_machine.c b/src/switch_core_state_machine.c index 500ea3c549..01f200ddb4 100644 --- a/src/switch_core_state_machine.c +++ b/src/switch_core_state_machine.c @@ -273,6 +273,7 @@ static void switch_core_standard_on_routing(switch_core_session_t *session) continue; } if (!(dialplan_interface = switch_loadable_module_get_dialplan_interface(dpname))) { + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Dialplan [%s] not found, skipping\n", dpname); continue; }