From: Eric Covener Date: Fri, 15 Jan 2016 16:29:59 +0000 (+0000) Subject: flush errors are TRACE1 in the core output filter now. X-Git-Tag: 2.5.0-alpha~2430 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b20446d9e2c4e9663fc43df94140a752359d42c8;p=thirdparty%2Fapache%2Fhttpd.git flush errors are TRACE1 in the core output filter now. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1724847 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 897c23b8d0f..cc6fb57f717 100644 --- 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 diff --git a/modules/generators/mod_cgid.c b/modules/generators/mod_cgid.c index 4cebd045712..020093cfca2 100644 --- a/modules/generators/mod_cgid.c +++ b/modules/generators/mod_cgid.c @@ -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"); } }