Commit dce1a3b8 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent f7acd0fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);