Commit f3a46b9d authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

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
parent 87d789bc
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 {
+2 −2
Original line number Diff line number Diff line
@@ -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;
    }