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
return;
/* Ignore anything that never gets logged anywhere */
- if (!(global_logmask & (1 << level)))
+ if (level != __LOG_VERBOSE && !(global_logmask & (1 << level)))
return;
/* Build string */