Commit 2b53b304 authored by Bill Stoddard's avatar Bill Stoddard
Browse files

Win32: Change message type to INFO


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84989 13f79535-47bb-0310-9956-ffa450edef68
parent 6cfbc293
Loading
Loading
Loading
Loading
+2 −2
Changes for server/mpm/winnt/mpm_winnt.c: 2 added lines, 2 removed lines.
Original line number Diff line number Diff line
@@ -1735,12 +1735,12 @@ API_EXPORT(int) ap_mpm_run(ap_pool_t *_pconf, ap_pool_t *plog, server_rec *s )

    if ((parent_pid != my_pid) || one_process) {
        /* Running as Child process or in one_process (debug) mode */
        ap_log_error(APLOG_MARK, APLOG_ERR, APR_SUCCESS, server_conf,
        ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
                     "Child %d: Child process is running", my_pid);
        AMCSocketInitialize();
        child_main();
        AMCSocketCleanup();
        ap_log_error(APLOG_MARK, APLOG_ERR, APR_SUCCESS, server_conf,
        ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
                     "Child %d: Child process is exiting", my_pid);        

        return 1;