[asterisk-commits] russell: branch 1.4 r106704 - /branches/1.4/include/asterisk/sched.h
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Mar 7 11:16:58 CST 2008
Author: russell
Date: Fri Mar 7 11:16:58 2008
New Revision: 106704
URL: http://svn.digium.com/view/asterisk?view=rev&rev=106704
Log:
Change a warning message to a debug message. This is happening quite frequently,
and it is not worth spamming users with these messages unless we are pretty confident
that it should never happen. As it stands today, it _will_ and _does_ happen and
until that gets cleaned up a reasonable amount on the development side, let's not
spam the logs of everyone else.
(closes issue #12154)
Modified:
branches/1.4/include/asterisk/sched.h
Modified: branches/1.4/include/asterisk/sched.h
URL: http://svn.digium.com/view/asterisk/branches/1.4/include/asterisk/sched.h?view=diff&rev=106704&r1=106703&r2=106704
==============================================================================
--- branches/1.4/include/asterisk/sched.h (original)
+++ branches/1.4/include/asterisk/sched.h Fri Mar 7 11:16:58 2008
@@ -41,7 +41,7 @@
while (id > -1 && ast_sched_del(sched, id) && ++_count < 10) \
usleep(1); \
if (_count == 10) \
- ast_log(LOG_WARNING, "Unable to cancel schedule ID %d. This is probably a bug (%s: %s, line %d).\n", id, __FILE__, __PRETTY_FUNCTION__, __LINE__); \
+ ast_log(LOG_DEBUG, "Unable to cancel schedule ID %d. This is probably a bug (%s: %s, line %d).\n", id, __FILE__, __PRETTY_FUNCTION__, __LINE__); \
id = -1; \
} while (0);
More information about the asterisk-commits
mailing list