aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorjrose <jrose@f38db490-d61c-443f-a65b-d21fe96a405b>2011-06-24 16:50:49 +0000
committerjrose <jrose@f38db490-d61c-443f-a65b-d21fe96a405b>2011-06-24 16:50:49 +0000
commitec0b887081c7f2d35ef368554bb599f78d395234 (patch)
treec9a1116dbca6f6fa4d3c1674445c94b85b5bb5d3 /include
parentf42cea0d8d2e5e4a5d0d9b594cd4dee154a1d500 (diff)
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 ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@324769 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/logger.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/logger.h b/include/asterisk/logger.h
index 322214e73..a2a28809f 100644
--- a/include/asterisk/logger.h
+++ b/include/asterisk/logger.h
@@ -181,7 +181,7 @@ void ast_console_toggle_loglevel(int fd, int level, int state);
#endif
#define AST_LOG_DTMF __LOG_DTMF, _A_
-#define NUMLOGLEVELS 6
+#define NUMLOGLEVELS 7
/*!
* \brief Get the debug level for a module