diff options
author | Jean-Frederic Clere <jfclere@apache.org> | 2010-08-18 10:31:36 +0200 |
---|---|---|
committer | Jean-Frederic Clere <jfclere@apache.org> | 2010-08-18 10:31:36 +0200 |
commit | 5bccbb504fdc751c3a93bc6a0993283af3ae6f64 (patch) | |
tree | ee5440967072d864dc84352ae7395bc43e0e52f4 /modules/proxy/mod_proxy_ajp.c | |
parent | Fix comment and code to be what it should have been/ (diff) | |
download | apache2-5bccbb504fdc751c3a93bc6a0993283af3ae6f64.tar.xz apache2-5bccbb504fdc751c3a93bc6a0993283af3ae6f64.zip |
Don't log errors when we can't send to client, just debug.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@986591 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/proxy/mod_proxy_ajp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c index 36ed32920f..c5e00f6428 100644 --- a/modules/proxy/mod_proxy_ajp.c +++ b/modules/proxy/mod_proxy_ajp.c @@ -471,7 +471,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r, } if (ap_pass_brigade(r->output_filters, output_brigade) != APR_SUCCESS) { - ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "proxy: error processing body.%s", r->connection->aborted ? " Client aborted connection." : ""); @@ -489,7 +489,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r, APR_BRIGADE_INSERT_TAIL(output_brigade, e); if (ap_pass_brigade(r->output_filters, output_brigade) != APR_SUCCESS) { - ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "proxy: error processing end"); output_failed = 1; } |