[asterisk-commits] russell: trunk r106707 - in /trunk: ./ include/asterisk/sched.h

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Mar 7 11:17:31 CST 2008


Author: russell
Date: Fri Mar  7 11:17:30 2008
New Revision: 106707

URL: http://svn.digium.com/view/asterisk?view=rev&rev=106707
Log:
Merged revisions 106704 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r106704 | russell | 2008-03-07 11:16:58 -0600 (Fri, 07 Mar 2008) | 8 lines

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:
    trunk/   (props changed)
    trunk/include/asterisk/sched.h

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/include/asterisk/sched.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/sched.h?view=diff&rev=106707&r1=106706&r2=106707
==============================================================================
--- trunk/include/asterisk/sched.h (original)
+++ trunk/include/asterisk/sched.h Fri Mar  7 11:17:30 2008
@@ -42,7 +42,7 @@
 			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