From: Bill Stoddard Date: Tue, 5 Apr 2005 19:01:09 +0000 (+0000) Subject: Win32: Eliminate useless debug error message X-Git-Tag: 2.1.5~241 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7936e9161a5735322ad1916f7cdab7cf38591c7d;p=apache Win32: Eliminate useless debug error message git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@160209 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 2699af9174..d560187b39 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -739,8 +739,6 @@ static unsigned int __stdcall worker_main(void *thread_num_val) int thread_num = (int)thread_num_val; ap_sb_handle_t *sbh; - ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf, - "Child %d: Worker thread %d starting.", my_pid, thread_num); while (1) { conn_rec *c; apr_int32_t disconnected; @@ -801,8 +799,6 @@ static unsigned int __stdcall worker_main(void *thread_num_val) ap_update_child_status_from_indexes(0, thread_num, SERVER_DEAD, (request_rec *) NULL); - ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, ap_server_conf, - "Child %d: Worker thread %d exiting.", my_pid, thread_num); return 0; }