]> granicus.if.org Git - apache/commitdiff
Lower the severity of the "listener thread didn't exit" message
authorJeff Trawick <trawick@apache.org>
Fri, 5 Sep 2003 19:36:26 +0000 (19:36 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 5 Sep 2003 19:36:26 +0000 (19:36 +0000)
to debug, as it is of interest only to developers.

PR:                9011

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101165 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/mpm/experimental/threadpool/threadpool.c
server/mpm/worker/worker.c

diff --git a/CHANGES b/CHANGES
index 6b3f130fa86ca40bc879710f5d68585344d688cd..d992fa9034d8113cd40919022129df94972d8f64 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,10 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) Lower the severity of the "listener thread didn't exit" message 
+     to debug, as it is of interest only to developers.  PR 9011
+     [Jeff Trawick]
+
   *) Fix a misleading message from the some of the threaded MPMs when 
      MaxClients has to be lowered due to the setting of ServerLimit.  
      [Jeff Trawick]
index 6f47c69343343b558987fa4415c69b19df5d387f..f54e2785571275cf7074eea678a615e66535aaf8 100644 (file)
@@ -1204,7 +1204,7 @@ static void join_workers(apr_thread_t *listener, apr_thread_t **threads)
             ++iter;
         }
         if (iter >= 10) {
-            ap_log_error(APLOG_MARK, APLOG_CRIT, 0, ap_server_conf,
+            ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf,
                          "the listener thread didn't exit");
         }
         else {
index e0c60bb423a4b2343a15fe15fd7802ed607d2b7f..dfe5de797139cb1c3fed0bdc0cfc2528e531ba53 100644 (file)
@@ -1075,7 +1075,7 @@ static void join_workers(apr_thread_t *listener, apr_thread_t **threads)
             ++iter;
         }
         if (iter >= 10) {
-            ap_log_error(APLOG_MARK, APLOG_CRIT, 0, ap_server_conf,
+            ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf,
                          "the listener thread didn't exit");
         }
         else {