[asterisk-commits] russell: trunk r287864 - in /trunk: ./ main/logger.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 21 08:45:34 CDT 2010
Author: russell
Date: Tue Sep 21 08:45:30 2010
New Revision: 287864
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=287864
Log:
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.
........
Modified:
trunk/ (props changed)
trunk/main/logger.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: trunk/main/logger.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/logger.c?view=diff&rev=287864&r1=287863&r2=287864
==============================================================================
--- trunk/main/logger.c (original)
+++ trunk/main/logger.c Tue Sep 21 08:45:30 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