]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
flush errors are TRACE1 in the core output filter now.
authorEric Covener <covener@apache.org>
Fri, 15 Jan 2016 16:29:59 +0000 (16:29 +0000)
committerEric Covener <covener@apache.org>
Fri, 15 Jan 2016 16:29:59 +0000 (16:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1724847 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/generators/mod_cgid.c

diff --git a/CHANGES b/CHANGES
index 897c23b8d0f667eaf971bc143c4b7f1a263934dc..cc6fb57f717e72aa4a2e3393083956f9a3b88755 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,10 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
+  *) mod_cgid: Message AH02550, failure to flush a response to the client,
+     is now logged at TRACE1 level to match the underlying core output filter
+     severity.  [Eric Covener]
+
   *) mod_http2: connection how keep a "push diary" where hashes of already
      pushed resources are kept. See directive H2PushDiarySize for managing this.
      Push diaries can be initialized by clients via the "Cache-Digest" request
index 4cebd0457126b654ade2e82ea2e192b19cdb3910..020093cfca2dfa627c06c1503e6b59b1b836ac2b 100644 (file)
@@ -1673,10 +1673,7 @@ static int cgid_handler(request_rec *r)
 
         rv = ap_pass_brigade(r->output_filters, bb);
         if (rv != APR_SUCCESS) { 
-            /* APLOG_ERR because the core output filter message is at error,
-             * but doesn't know it's passing CGI output 
-             */
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(02550) "Failed to flush CGI output to client");
+            ap_log_rerror(APLOG_MARK, APLOG_TRACE1, rv, r, APLOGNO(02550) "Failed to flush CGI output to client");
         }
     }