]> granicus.if.org Git - apache/commitdiff
Downgrade to DEBUG level several messages which were all redundant
authorWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 10 Oct 2011 20:22:18 +0000 (20:22 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 10 Oct 2011 20:22:18 +0000 (20:22 +0000)
to these NOTICE level messages;

Child: Starting %d worker threads
Child: All worker threads have exited

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

server/mpm/winnt/child.c
server/mpm/winnt/mpm_winnt.c

index 5716d3bb6d6d47575d3a02fa9201f98a942ffd3c..1f8201359cbb3a2ebae0ff59fa46999103bb3a9d 100644 (file)
@@ -961,7 +961,7 @@ void child_main(apr_pool_t *pconf)
                      "Process will exit.");
         exit(APEXIT_CHILDINIT);
     }
-    ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, ap_server_conf,
+    ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf,
                  "Child: Acquired the start mutex.");
 
     /*
@@ -1084,7 +1084,7 @@ void child_main(apr_pool_t *pconf)
         }
         else if (cld == 0) {
             /* Exit event was signaled */
-            ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, ap_server_conf,
+            ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf,
                          "Child: Exit event signaled. Child process is "
                          "ending.");
             break;
@@ -1134,7 +1134,7 @@ void child_main(apr_pool_t *pconf)
      */
     rv = apr_proc_mutex_unlock(start_mutex);
     if (rv == APR_SUCCESS) {
-        ap_log_error(APLOG_MARK, APLOG_NOTICE, rv, ap_server_conf,
+        ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, ap_server_conf,
                      "Child: Released the start mutex");
     }
     else {
index d050d63dbd9c7cf2c37749ae34e54be987b40c6e..2a74fe7826aeeb8244224c5a472fb374ba963baa 100644 (file)
@@ -1705,12 +1705,12 @@ static int winnt_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s )
     {
         /* The child process or in one_process (debug) mode
          */
-        ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, ap_server_conf,
+        ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf,
                      "Child process is running");
 
         child_main(pconf);
 
-        ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, ap_server_conf,
+        ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf,
                      "Child process is exiting");
         return DONE;
     }