[svn-commits] murf: trunk r163675 - /trunk/channels/chan_dahdi.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Dec 12 13:16:33 CST 2008


Author: murf
Date: Fri Dec 12 13:16:32 2008
New Revision: 163675

URL: http://svn.digium.com/view/asterisk?view=rev&rev=163675
Log:
demote always-appearing debug message (for certain boards) to ast_debug lev 3 msg instead

Modified:
    trunk/channels/chan_dahdi.c

Modified: trunk/channels/chan_dahdi.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_dahdi.c?view=diff&rev=163675&r1=163674&r2=163675
==============================================================================
--- trunk/channels/chan_dahdi.c (original)
+++ trunk/channels/chan_dahdi.c Fri Dec 12 13:16:32 2008
@@ -8167,7 +8167,8 @@
 								/* Set driver resources for signalling VMWI */
 								res2 = ioctl(last->subs[SUB_REAL].dfd, DAHDI_VMWI, res);
 								if (res2) {
-									ast_log(LOG_DEBUG, "Unable to control message waiting led on channel %d: %s\n", last->channel, strerror(errno));
+									/* TODO: This message will ALWAYS be generated on some cards; any way to restrict it to those cards where it is interesting? */
+									ast_debug(3, "Unable to control message waiting led on channel %d: %s\n", last->channel, strerror(errno));
 								}
 								/* This channel has a new voicemail state,
 								* initiate a mechanism to send an MWI message




More information about the svn-commits mailing list