From dad9f704f635edf0c06a4f7d5415e31897a99243 Mon Sep 17 00:00:00 2001 From: Justin Erenkrantz Date: Fri, 15 Feb 2002 01:17:53 +0000 Subject: [PATCH] Just toss these debug messages since so many people use httpd with LogLevel 'debug' and complain if they see anything that says "error" in it. This case isn't even interesting unless you are hard-core. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93422 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 3 +++ server/protocol.c | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index afc7d0f537..e898f4a80d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.33-dev + *) Remove spurious debug messsages that are normal under HTTP + keep-alive logic. [Jeff Trawick, Justin Erenkrantz] + *) Fix a bug in mod_cgid that would prevent proper shutdown death of the cgid process. [Aaron Bannert] diff --git a/server/protocol.c b/server/protocol.c index 854c8179e0..79a07a0cf3 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -601,7 +601,6 @@ static int read_request_line(request_rec *r) &len, r, 0); if (rv != APR_SUCCESS) { - ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, "read_request_line() failed"); r->request_time = apr_time_now(); return 0; } @@ -710,7 +709,6 @@ static void get_mime_headers(request_rec *r) if (rv != APR_SUCCESS) { r->status = HTTP_BAD_REQUEST; - ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, "get_mime_headers() failed"); return; } -- 2.40.0