You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2021/10/15 10:49:33 UTC

svn commit: r1894286 - /httpd/httpd/trunk/server/mpm/event/event.c

Author: ylavic
Date: Fri Oct 15 10:49:32 2021
New Revision: 1894286

URL: http://svn.apache.org/viewvc?rev=1894286&view=rev
Log:
Follow up to r1894285: add idle_threads and max_workers to trace5.

Modified:
    httpd/httpd/trunk/server/mpm/event/event.c

Modified: httpd/httpd/trunk/server/mpm/event/event.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/event/event.c?rev=1894286&r1=1894285&r2=1894286&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/event/event.c (original)
+++ httpd/httpd/trunk/server/mpm/event/event.c Fri Oct 15 10:49:32 2021
@@ -3210,9 +3210,10 @@ static void perform_idle_server_maintena
             /* 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) {