From: Elan Ruusamäe Date: Thu, 23 Nov 2006 13:10:27 +0000 (+0000) Subject: - include more urls in debug messages X-Git-Tag: auto/ac/apache1-1_3_37-6~2 X-Git-Url: http://git.pld-linux.org/?a=commitdiff_plain;ds=inline;h=677b74439e83e20723988231c2a9cd769a0b6adc;p=packages%2Fapache1.git - include more urls in debug messages Changed files: apache1-rwrite-debug.patch -> 1.2 --- diff --git a/apache1-rwrite-debug.patch b/apache1-rwrite-debug.patch index 037151d..8d39dbc 100644 --- a/apache1-rwrite-debug.patch +++ b/apache1-rwrite-debug.patch @@ -1,6 +1,33 @@ ---- ./src/main/http_protocol.c~ Thu Apr 25 15:56:54 2002 -+++ ./src/main/http_protocol.c Thu Apr 25 15:56:57 2002 -@@ -2537,7 +2537,7 @@ +--- apache_1.3.37/src/main/http_protocol.c 2006-11-23 15:05:03.776638483 +0200 ++++ apache_1.3.37/src/main/http_protocol.c 2006-11-23 15:07:14.679573858 +0200 +@@ -2486,7 +2486,7 @@ + else if (w < 0) { + if (!r->connection->aborted) { + ap_log_rerror(APLOG_MARK, APLOG_INFO, r, +- "client stopped connection before send body completed"); ++ "client stopped connection before send body completed (url: %s?%s)", r->uri, r->args ? r->args : ""); + ap_bsetflag(r->connection->client, B_EOUT, 1); + r->connection->aborted = 1; + } +@@ -2572,7 +2572,7 @@ + /* we need to block, so flush the output first */ + if (ap_bflush(r->connection->client) < 0) { + ap_log_rerror(APLOG_MARK, APLOG_INFO, r, +- "client stopped connection before send body completed"); ++ "client stopped connection before send body completed (url: %s?%s)", r->uri, r->args ? r->args : ""); + ap_bsetflag(r->connection->client, B_EOUT, 1); + r->connection->aborted = 1; + break; +@@ -2610,7 +2610,7 @@ + else if (w < 0) { + if (!r->connection->aborted) { + ap_log_rerror(APLOG_MARK, APLOG_INFO, r, +- "client stopped connection before send body completed"); ++ "client stopped connection before send body completed (url: %s?%s)", r->uri, r->args ? r->args : ""); + ap_bsetflag(r->connection->client, B_EOUT, 1); + r->connection->aborted = 1; + } +@@ -2735,7 +2735,7 @@ if (n < 0) { if (!r->connection->aborted) { ap_log_rerror(APLOG_MARK, APLOG_INFO, r,