You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2014/12/06 16:36:19 UTC

svn commit: r1643543 - /httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

Author: ylavic
Date: Sat Dec  6 15:36:19 2014
New Revision: 1643543

URL: http://svn.apache.org/r1643543
Log:
mod_proxy_ajp: follow up to r1643537.
Log aborted client connections with level DEBUG only (no more noise than other proxy modules).

Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c?rev=1643543&r1=1643542&r2=1643543&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c Sat Dec  6 15:36:19 2014
@@ -686,7 +686,8 @@ static int ap_proxy_ajp_request(apr_pool
         }
     }
     else if (output_failed) {
-        ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(02822)
+        int level = (r->connection->aborted) ? APLOG_DEBUG : APLOG_ERR;
+        ap_log_rerror(APLOG_MARK, level, status, r, APLOGNO(02822)
                       "dialog with client %pI failed",
                       r->connection->client_addr);
         if (rv == OK) {