From: Joshua Colp Date: Fri, 23 Feb 2007 21:57:07 +0000 (+0000) Subject: Merged revisions 56457 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~3120 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=acf96db39fe2411c163783394c0e939797fa42cb;p=thirdparty%2Fasterisk.git Merged revisions 56457 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r56457 | file | 2007-02-23 16:53:41 -0500 (Fri, 23 Feb 2007) | 2 lines Change log notice to debug. It is possible for a scheduled item to execute and be deleted at close to the same time and unavoidable. If this happens this message creeps up. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@56458 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/sched.c b/main/sched.c index 5fc0ef9ede..851e07db54 100644 --- a/main/sched.c +++ b/main/sched.c @@ -281,7 +281,8 @@ int ast_sched_del(struct sched_context *con, int id) ast_mutex_unlock(&con->lock); if (!s) { - ast_log(LOG_NOTICE, "Attempted to delete nonexistent schedule entry %d!\n", id); + if (option_debug) + ast_log(LOG_DEBUG, "Attempted to delete nonexistent schedule entry %d!\n", id); #ifdef DO_CRASH CRASH; #endif