From 3f0ea90ce65e93705347f47221862fc9e345a1b3 Mon Sep 17 00:00:00 2001
From: "David M. Lee" <dlee@digium.com>
Date: Thu, 7 Mar 2013 21:55:28 +0000
Subject: [PATCH] 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
---
 main/threadpool.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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;
 	}
 
-- 
GitLab