From: David M. Lee Date: Thu, 7 Mar 2013 21:55:28 +0000 (+0000) Subject: Changing log level of "Not changing threadpool size" from notice to debug. X-Git-Tag: 13.0.0-beta1~2031 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f0ea90ce65e93705347f47221862fc9e345a1b3;p=thirdparty%2Fasterisk.git 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 --- diff --git a/main/threadpool.c b/main/threadpool.c index f6755e3fb1..e2fdecc578 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; }