You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2014/06/20 12:17:09 UTC

svn commit: r1604123 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c

Author: ylavic
Date: Fri Jun 20 10:17:09 2014
New Revision: 1604123

URL: http://svn.apache.org/r1604123
Log:
Lower log "graceful kill fail, sending SIGKILL" level to DEBUG on Windows.
PR 54597.

Submitted by: <Mario, JBlond gmail.com>
Reviewed by: gsmith

Modified:
    httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c

Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c?rev=1604123&r1=1604122&r2=1604123&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_pm_main.c Fri Jun 20 10:17:09 2014
@@ -333,7 +333,11 @@ static void scan_errorlist(server_rec * 
                                   current_node->proc_pool);
         }
         else {
++#ifndef WIN32
             ap_log_error(APLOG_MARK, APLOG_WARNING, 0, main_server,
++#else
+            ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, main_server,
++#endif
                          "mod_fcgid: process %" APR_PID_T_FMT
                          " graceful kill fail, sending SIGKILL",
                          current_node->proc_id.pid);