Lower log "graceful kill fail, sending SIGKILL" level to DEBUG on Windows.
PR 54597.

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


git-svn-id: https://svn.apache.org/repos/asf/httpd/mod_fcgid/trunk@1604123 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/modules/fcgid/fcgid_pm_main.c b/modules/fcgid/fcgid_pm_main.c
index 74e1888..3eab347 100644
--- a/modules/fcgid/fcgid_pm_main.c
+++ b/modules/fcgid/fcgid_pm_main.c
@@ -333,7 +333,11 @@
                                   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);