[asterisk-commits] russell: branch 1.8 r287863 - /branches/1.8/main/logger.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 21 08:41:46 CDT 2010
Author: russell
Date: Tue Sep 21 08:41:41 2010
New Revision: 287863
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=287863
Log:
Fix a regression in verbose logger processing.
Modified:
branches/1.8/main/logger.c
Modified: branches/1.8/main/logger.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/logger.c?view=diff&rev=287863&r1=287862&r2=287863
==============================================================================
--- branches/1.8/main/logger.c (original)
+++ branches/1.8/main/logger.c Tue Sep 21 08:41:41 2010
@@ -1136,7 +1136,7 @@
return;
/* Ignore anything that never gets logged anywhere */
- if (!(global_logmask & (1 << level)))
+ if (level != __LOG_VERBOSE && !(global_logmask & (1 << level)))
return;
/* Build string */
More information about the asterisk-commits
mailing list