From 83cf542b3d85932c2b7803f1d2fe52d6f8002ad1 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 25 Jul 2001 20:48:53 +0000 Subject: [PATCH] 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 --- server/mpm/threaded/threaded.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.2