From: Russell Bryant Date: Tue, 21 Sep 2010 13:41:41 +0000 (+0000) Subject: Fix a regression in verbose logger processing. X-Git-Tag: 1.8.0-rc1~3^2~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bc7529f454ef1c66f3126d1de3030e52c537562;p=thirdparty%2Fasterisk.git Fix a regression in verbose logger processing. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@287863 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- 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 */