From c0ddaa38d12a0546562b0832656fb9bba0187ecd Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 21 Sep 2010 13:45:30 +0000 Subject: [PATCH] Merged revisions 287863 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r287863 | russell | 2010-09-21 08:41:41 -0500 (Tue, 21 Sep 2010) | 2 lines Fix a regression in verbose logger processing. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@287864 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/logger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/logger.c b/main/logger.c index 3593c7c7cd..25f252f31c 100644 --- a/main/logger.c +++ b/main/logger.c @@ -1136,7 +1136,7 @@ void ast_log(int level, const char *file, int line, const char *function, const return; /* Ignore anything that never gets logged anywhere */ - if (!(global_logmask & (1 << level))) + if (level != __LOG_VERBOSE && !(global_logmask & (1 << level))) return; /* Build string */