]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
move sig messages up to DEBUG1
authorAnthony Minessale <anthm@freeswitch.org>
Fri, 8 Apr 2011 19:23:16 +0000 (14:23 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Fri, 8 Apr 2011 19:23:16 +0000 (14:23 -0500)
src/switch_core.c

index 623f1067a4db482fc85d15dd5f090062d720d588..d3a696bef55ae6706611286daf092b43b7c80f15 100644 (file)
@@ -1444,7 +1444,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_init(switch_core_flag_t flags, switc
 static void handle_SIGQUIT(int sig)
 {
        if (sig);
-       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Sig Quit!\n");
+       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Sig Quit!\n");
        return;
 }
 #endif
@@ -1453,7 +1453,7 @@ static void handle_SIGQUIT(int sig)
 static void handle_SIGPIPE(int sig)
 {
        if (sig);
-       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Sig Pipe!\n");
+       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Sig Pipe!\n");
        return;
 }
 #endif
@@ -1462,7 +1462,7 @@ static void handle_SIGPIPE(int sig)
 static void handle_SIGPOLL(int sig)
 {
        if (sig);
-       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Sig Poll!\n");
+       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Sig Poll!\n");
        return;
 }
 #endif
@@ -1471,7 +1471,7 @@ static void handle_SIGPOLL(int sig)
 static void handle_SIGIO(int sig)
 {
        if (sig);
-       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Sig I/O!\n");
+       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Sig I/O!\n");
        return;
 }
 #endif
@@ -1479,7 +1479,7 @@ static void handle_SIGIO(int sig)
 #ifdef TRAP_BUS
 static void handle_SIGBUS(int sig)
 {
-       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, "Sig BUS!\n");
+       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Sig BUS!\n");
        return;
 }
 #endif