From 677b74439e83e20723988231c2a9cd769a0b6adc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Elan=20Ruusam=C3=A4e?= Date: Thu, 23 Nov 2006 13:10:27 +0000 Subject: [PATCH] - include more urls in debug messages Changed files: apache1-rwrite-debug.patch -> 1.2 --- apache1-rwrite-debug.patch | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) 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, -- 2.44.0