From 4d6a412856e8f22109dc62c70dc5249596f1ea6c Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 10 Oct 2011 20:22:18 +0000 Subject: [PATCH] Downgrade to DEBUG level several messages which were all redundant 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 | 6 +++--- server/mpm/winnt/mpm_winnt.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 5716d3bb6d..1f8201359c 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -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 { diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index d050d63dbd..2a74fe7826 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -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; } -- 2.50.1