aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_dahdi.c
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-12 19:40:04 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-12 19:40:04 +0000
commite9ee64d80984a0d2dafdc1102a68a2522606e43d (patch)
tree8f627cdf06e39110d28fb61079b1e4598d19306c /channels/chan_dahdi.c
parent4e4f077a08c76b6a39587c456b031c59609f0d8c (diff)
Merged revisions 163675 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r163675 | murf | 2008-12-12 12:16:32 -0700 (Fri, 12 Dec 2008) | 1 line demote always-appearing debug message (for certain boards) to ast_debug lev 3 msg instead ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@163714 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_dahdi.c')
-rw-r--r--channels/chan_dahdi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index c15a85b74..c13ba4431 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -7799,7 +7799,8 @@ static void *do_monitor(void *data)
ast_debug(1, "Message status for %s changed from %d to %d on %d\n", last->mailbox, last->msgstate, res, last->channel);
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));
x = DAHDI_FLUSH_BOTH;
res2 = ioctl(last->subs[SUB_REAL].dfd, DAHDI_FLUSH, &x);
if (res2)