-*- 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
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");
}
}