From b20446d9e2c4e9663fc43df94140a752359d42c8 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Fri, 15 Jan 2016 16:29:59 +0000 Subject: [PATCH] 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 --- CHANGES | 4 ++++ modules/generators/mod_cgid.c | 5 +---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 897c23b8d0..cc6fb57f71 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 4cebd04571..020093cfca 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"); } } -- 2.40.0