From 8c36c6d4432d5b93b658ed72f62ef0a19c5ae1f7 Mon Sep 17 00:00:00 2001 From: Rupa Schomaker Date: Wed, 11 Feb 2009 17:39:03 +0000 Subject: [PATCH] remove extra logs that were for debugging git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11874 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_lcr/mod_lcr.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mod/applications/mod_lcr/mod_lcr.c b/src/mod/applications/mod_lcr/mod_lcr.c index ff7a9f4f5a..e1a247b4e5 100644 --- a/src/mod/applications/mod_lcr/mod_lcr.c +++ b/src/mod/applications/mod_lcr/mod_lcr.c @@ -514,11 +514,9 @@ static switch_status_t lcr_load_config() if ((!strcasecmp(var, "order_by") || !strcasecmp(var, "pre_order")) && !switch_strlen_zero(val)) { if(!strcasecmp(var, "order_by")) { thisorder = &order_by; - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Hit var of order_by\n"); } else if(!strcasecmp(var, "pre_order")) { thisorder = &pre_order; comma = ""; /* don't want leading comma */ - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Hit var of pre_order\n"); } switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "param val is %s\n", val); if ((argc = switch_separate_string(val, ',', argv, (sizeof(argv) / sizeof(argv[0]))))) {