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-Tag: 2.0.34~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8dd037868d69a669fdbe843d0caa32d6edb5515;p=thirdparty%2Fapache%2Fhttpd.git 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 6f625970bff..fb48e486cc2 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); }