[asterisk-commits] jrose: trunk r324769 - in /trunk: ./ include/asterisk/logger.h

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jun 24 11:50:52 CDT 2011


Author: jrose
Date: Fri Jun 24 11:50:49 2011
New Revision: 324769

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=324769
Log:
Merged revisions 324768 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r324768 | jrose | 2011-06-24 11:48:06 -0500 (Fri, 24 Jun 2011) | 11 lines
  
  DTMF wasn't being logged on connected consoles when enabled in logger.conf
  
  Previously in order for DTMF to be logged in a connected console session, the user would
  have to do logger set channel DTMF on.  This corrects that so that it is on by default.
  This issue was caused by an off by one error incurred by a logger level count of 6 in
  logger.h where it should have been 7.
  
  (closes issue: ASTERISK-17974)
  Reported by: Luke H
........

Modified:
    trunk/   (props changed)
    trunk/include/asterisk/logger.h

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: trunk/include/asterisk/logger.h
URL: http://svnview.digium.com/svn/asterisk/trunk/include/asterisk/logger.h?view=diff&rev=324769&r1=324768&r2=324769
==============================================================================
--- trunk/include/asterisk/logger.h (original)
+++ trunk/include/asterisk/logger.h Fri Jun 24 11:50:49 2011
@@ -181,7 +181,7 @@
 #endif
 #define AST_LOG_DTMF    __LOG_DTMF, _A_
 
-#define NUMLOGLEVELS 6
+#define NUMLOGLEVELS 7
 
 /*!
  * \brief Get the debug level for a module




More information about the asterisk-commits mailing list