]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Follow up to r1894285: add idle_threads and max_workers to trace5.
authorYann Ylavic <ylavic@apache.org>
Fri, 15 Oct 2021 10:49:32 +0000 (10:49 +0000)
committerYann Ylavic <ylavic@apache.org>
Fri, 15 Oct 2021 10:49:32 +0000 (10:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894286 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/event/event.c

index 2e7bb6bfdbdbf27f40cb6d6901d084c2c0c9fef3..ac7940d16dd34b6ce88d83d429a3a98d9f936618 100644 (file)
@@ -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) {