[asterisk-commits] dlee: trunk r382648 - /trunk/main/threadpool.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Mar 7 15:55:31 CST 2013


Author: dlee
Date: Thu Mar  7 15:55:28 2013
New Revision: 382648

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=382648
Log:
Changing log level of "Not changing threadpool size" from notice to debug.

Modified:
    trunk/main/threadpool.c

Modified: trunk/main/threadpool.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/threadpool.c?view=diff&rev=382648&r1=382647&r2=382648
==============================================================================
--- trunk/main/threadpool.c (original)
+++ trunk/main/threadpool.c Thu Mar  7 15:55:28 2013
@@ -801,8 +801,8 @@
 		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;
 	}
 




More information about the asterisk-commits mailing list