summaryrefslogtreecommitdiff
path: root/main/threadpool.c
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@digium.com>2013-03-07 21:55:28 +0000
committerDavid M. Lee <dlee@digium.com>2013-03-07 21:55:28 +0000
commit3f0ea90ce65e93705347f47221862fc9e345a1b3 (patch)
treefc3cad94ace95bd0636345adc34faa6f0e3fa2a2 /main/threadpool.c
parentc55592a3248d014c223baa93649f2dd01a84528f (diff)
Changing log level of "Not changing threadpool size" from notice to debug.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@382648 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/threadpool.c')
-rw-r--r--main/threadpool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/threadpool.c b/main/threadpool.c
index f6755e3fb..e2fdecc57 100644
--- a/main/threadpool.c
+++ b/main/threadpool.c
@@ -801,8 +801,8 @@ static int queued_set_size(void *data)
ao2_container_count(pool->idle_threads);
if (current_size == num_threads) {
- ast_log(LOG_NOTICE, "Not changing threadpool size since new size %u is the same as current %u\n",
- num_threads, current_size);
+ ast_debug(3, "Not changing threadpool size since new size %u is the same as current %u\n",
+ num_threads, current_size);
return 0;
}