From: Yann Ylavic Date: Fri, 15 Oct 2021 10:49:32 +0000 (+0000) Subject: Follow up to r1894285: add idle_threads and max_workers to trace5. X-Git-Tag: 2.5.0-alpha2-ci-test-only~729 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04dac4fb10e51cd62a80a3e5352055536f1e255f;p=thirdparty%2Fapache%2Fhttpd.git Follow up to r1894285: add idle_threads and max_workers to trace5. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894286 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c index 2e7bb6bfdbd..ac7940d16dd 100644 --- a/server/mpm/event/event.c +++ b/server/mpm/event/event.c @@ -3210,9 +3210,10 @@ static void perform_idle_server_maintenance(int child_bucket, int num_buckets) /* Still busy enough, don't kill */ ap_log_error(APLOG_MARK, APLOG_TRACE5, 0, ap_server_conf, "Not shutting down child: total daemons %d / " - "active limit %d / ServerLimit %d", + "active limit %d / ServerLimit %d / " + "idle threads %d / max workers %d", retained->total_daemons, active_daemons_limit, - server_limit); + server_limit, idle_thread_count, max_workers); } } else if (idle_thread_count < min_spare_threads / num_buckets) {