]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a regression in verbose logger processing.
authorRussell Bryant <russell@russellbryant.com>
Tue, 21 Sep 2010 13:41:41 +0000 (13:41 +0000)
committerRussell Bryant <russell@russellbryant.com>
Tue, 21 Sep 2010 13:41:41 +0000 (13:41 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@287863 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/logger.c

index 3593c7c7cd256dcbcd91b20a66736955592a8191..25f252f31cc962d480572ef15312045c026ce879 100644 (file)
@@ -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 */