From: Jeff Trawick Date: Wed, 25 Jul 2001 20:48:53 +0000 (+0000) Subject: fix the "server seems busy" message so that it really logs X-Git-Tag: 2.0.22~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83cf542b3d85932c2b7803f1d2fe52d6f8002ad1;p=thirdparty%2Fapache%2Fhttpd.git fix the "server seems busy" message so that it really logs the number of children we're about to spawn git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89710 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/threaded/threaded.c b/server/mpm/threaded/threaded.c index 4050e059b0d..ee232081f15 100644 --- a/server/mpm/threaded/threaded.c +++ b/server/mpm/threaded/threaded.c @@ -1036,7 +1036,7 @@ static void perform_idle_server_maintenance(void) "to increase StartServers, ThreadsPerChild " "or Min/MaxSpareThreads), " "spawning %d children, there are around %d idle " - "threads, and %d total children", idle_spawn_rate, + "threads, and %d total children", free_length, idle_thread_count, total_non_dead); } for (i = 0; i < free_length; ++i) {