]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Revert 13615
authorMathieu Rene <mrene@avgs.ca>
Tue, 9 Jun 2009 19:00:15 +0000 (19:00 +0000)
committerMathieu Rene <mrene@avgs.ca>
Tue, 9 Jun 2009 19:00:15 +0000 (19:00 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13733 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/sofia.c

index d503542210ea2d968175cb3da1dfb6ed4ad4a0ee..656f81ab2c2d932b2cdfc359684329b502aa392b 100644 (file)
@@ -1003,9 +1003,9 @@ void launch_sofia_profile_thread(sofia_profile_t *profile)
 static void logger(void *logarg, char const *fmt, va_list ap)
 {
        if (fmt && ap) {
-               switch_log_vprintf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_INFO, fmt, ap);
+               switch_log_vprintf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_CONSOLE, fmt, ap);
        } else if (fmt && !ap) {
-               switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_INFO, "%s", fmt);
+               switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_CONSOLE, "%s", fmt);
        }
 }