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
This commit is contained in:
Russell Bryant
2010-09-21 13:45:30 +00:00
parent 690561643d
commit c0ddaa38d1

View 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 */