From: William A. Rowe Jr Date: Fri, 22 Mar 2002 06:51:52 +0000 (+0000) Subject: An error is an error. Since we replace the message with 'failed to X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba982c33bb3eca0fe771c4a53f0ce13be0d36cfb;p=apache An error is an error. Since we replace the message with 'failed to invoke command; ...' we aught to log it at the right level. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94122 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_cgi.c b/modules/generators/mod_cgi.c index 6f625970bf..fb48e486cc 100644 --- a/modules/generators/mod_cgi.c +++ b/modules/generators/mod_cgi.c @@ -466,7 +466,7 @@ static apr_status_t run_cgi_child(apr_file_t **script_out, /* Bad things happened. Everyone should have cleaned up. */ #if APR_HAS_PROC_INVOKED if (procnew->invoked) { - ap_log_rerror(APLOG_MARK, APLOG_INFO, rc, r, + ap_log_rerror(APLOG_MARK, APLOG_ERR, rc, r, "mod_cgi: failed to invoke process: %s", procnew->invoked); }