From: Jeff Trawick Date: Mon, 18 Jun 2001 12:38:17 +0000 (+0000) Subject: As with Apache 1.3, use priority APLOG_INFO (instead of APLOG_ERR) for X-Git-Tag: 2.0.19~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03a0359eb83a4f4493fc9f8c02432f2a8d9ece9f;p=thirdparty%2Fapache%2Fhttpd.git As with Apache 1.3, use priority APLOG_INFO (instead of APLOG_ERR) for log messages which report network errors writing to the client. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89384 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index b4b32e56fd3..af35e4339f4 100644 --- a/server/core.c +++ b/server/core.c @@ -3245,7 +3245,7 @@ static apr_status_t core_output_filter(ap_filter_t *f, apr_bucket_brigade *b) apr_brigade_destroy(b); if (rv != APR_SUCCESS) { - ap_log_error(APLOG_MARK, APLOG_ERR, rv, c->base_server, + ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server, "core_output_filter: writing data to the network"); if (more) apr_brigade_destroy(more);