]> granicus.if.org Git - apache/commitdiff
Win32: Eliminate useless debug error message
authorBill Stoddard <stoddard@apache.org>
Tue, 5 Apr 2005 19:01:09 +0000 (19:01 +0000)
committerBill Stoddard <stoddard@apache.org>
Tue, 5 Apr 2005 19:01:09 +0000 (19:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@160209 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/winnt/child.c

index 2699af9174cc58e4520f87dfde1912a0fbe2e9cd..d560187b39c0b1aea34bec5845bf355c1b1c738d 100644 (file)
@@ -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;
 }