summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2016-10-09 22:28:52 -0400
committerCorey Farrell <git@cfware.com>2016-10-09 22:28:52 -0400
commit2f2ef9b8a6080e63de2de8a0e2d8760e5ebbf713 (patch)
tree804cd30ff4215d0c618a59a7e01c6e3196c0e5da /main
parent741c2e157096b5c1f38f0c9a9ca08ae8d7197c7e (diff)
logger: Prevent output of verbose messages initiated from rasterisk.
Remote asterisk consoles should only display verbose log messages created by the daemon. The first patch for ASTERISK-26410 caused a couple verbose messages to be printed when the rasterisk process ended. ASTERISK-26410 Change-Id: Ie2a1bb3753ad2724c0349ec1a336f52f7117b52a
Diffstat (limited to 'main')
-rw-r--r--main/logger.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/logger.c b/main/logger.c
index d4cd25122..7d0d2de1e 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -1867,6 +1867,10 @@ static void __attribute__((format(printf, 7, 0))) ast_log_full(int level, int su
int res = 0;
char datestring[256];
+ if (level == __LOG_VERBOSE && ast_opt_remote && ast_opt_exec) {
+ return;
+ }
+
if (!(buf = ast_str_thread_get(&log_buf, LOG_BUF_INIT_SIZE)))
return;