Commit f8ae0d3a authored by Bill Stoddard's avatar Bill Stoddard
Browse files

Win32: Eliminate useless debug error message

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@160209 13f79535-47bb-0310-9956-ffa450edef68
parent 4e867ade
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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;
}