diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2011-10-10 22:22:18 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2011-10-10 22:22:18 +0200 |
commit | 4d6a412856e8f22109dc62c70dc5249596f1ea6c (patch) | |
tree | 2a721825e5b16809f5512327daaa2cfbae38cba0 /server/mpm | |
parent | Resolve server and remote IP's in the AcceptFilter 'none' path. (diff) | |
download | apache2-4d6a412856e8f22109dc62c70dc5249596f1ea6c.tar.xz apache2-4d6a412856e8f22109dc62c70dc5249596f1ea6c.zip |
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
Diffstat (limited to 'server/mpm')
-rw-r--r-- | server/mpm/winnt/child.c | 6 | ||||
-rw-r--r-- | 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; } |