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: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@163714 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Steve Murphy 18 years ago
parent 1b1801f155
commit 076e16cf9f

@ -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)

Loading…
Cancel
Save