From: erickson Date: Thu, 21 Apr 2011 20:04:42 +0000 (+0000) Subject: change proc managament debug message from Info to Debug X-Git-Tag: osrf_rel_2_1_0-alpha1~52 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9ab5a90c08f1b14ffa421457ac645da45f832401;p=OpenSRF.git change proc managament debug message from Info to Debug git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2230 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/libopensrf/osrf_prefork.c b/src/libopensrf/osrf_prefork.c index e80e524..1293909 100644 --- a/src/libopensrf/osrf_prefork.c +++ b/src/libopensrf/osrf_prefork.c @@ -735,7 +735,7 @@ static void prefork_run( prefork_simple* forker ) { // physical memory, and the one least likely to have to be swapped in. while( forker->idle_list ) { - osrfLogInfo( OSRF_LOG_MARK, "Looking for idle child" ); + osrfLogDebug( OSRF_LOG_MARK, "Looking for idle child" ); // Grab the prefork_child at the head of the idle list cur_child = forker->idle_list; forker->idle_list = cur_child->next;