]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
As with Apache 1.3, use priority APLOG_INFO (instead of APLOG_ERR) for
authorJeff Trawick <trawick@apache.org>
Mon, 18 Jun 2001 12:38:17 +0000 (12:38 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 18 Jun 2001 12:38:17 +0000 (12:38 +0000)
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

server/core.c

index b4b32e56fd3d21d67dd39c8ee527ad65f7aa67ca..af35e4339f4c0cb01da6edd085dba4f1801afa4e 100644 (file)
@@ -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);