From: Anthony Minessale Date: Thu, 18 Sep 2008 23:29:34 +0000 (+0000) Subject: change debug stmt X-Git-Tag: v1.0.2~1185 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=302d3bafe810fa8459254c451bdc07cadfcff634;p=thirdparty%2Ffreeswitch.git change debug stmt git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9592 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c b/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c index 4d895f54d0..714cdca00f 100644 --- a/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c +++ b/src/mod/dialplans/mod_dialplan_xml/mod_dialplan_xml.c @@ -48,10 +48,14 @@ static int parse_exten(switch_core_session_t *session, switch_caller_profile_t * { switch_xml_t xcond, xaction, xexpression; switch_channel_t *channel = switch_core_session_get_channel(session); - char *exten_name = (char *) switch_xml_attr_soft(xexten, "name"); + char *exten_name = (char *) switch_xml_attr(xexten, "name"); int proceed = 0; char *expression_expanded = NULL, *field_expanded = NULL; + if (!exten_name) { + exten_name = "_anon_"; + } + for (xcond = switch_xml_child(xexten, "condition"); xcond; xcond = xcond->next) { char *field = NULL; char *do_break_a = NULL; @@ -110,7 +114,7 @@ static int parse_exten(switch_core_session_t *session, switch_caller_profile_t * if (!field_data) { field_data = ""; } - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "test conditions %s(%s) =~ /%s/\n", field, field_data, expression); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Regex: [%s] %s(%s) =~ /%s/\n", exten_name, field, field_data, expression); if (!(proceed = switch_regex_perform(field_data, expression, &re, ovector, sizeof(ovector) / sizeof(ovector[0])))) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Regex mismatch\n");