aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/sched.h
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-07 17:17:30 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-07 17:17:30 +0000
commitb2d8cd7382463017b70e75d1b6fc16ac786a1293 (patch)
tree6e1adb3724498ef9ff7de821c541316609b8242d /include/asterisk/sched.h
parent20154045f6c61e26f96d3447c6c7a4c5526e2f03 (diff)
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) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@106707 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/sched.h')
-rw-r--r--include/asterisk/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/sched.h b/include/asterisk/sched.h
index cd65a6887..28a14b847 100644
--- a/include/asterisk/sched.h
+++ b/include/asterisk/sched.h
@@ -42,7 +42,7 @@ extern "C" {
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);