From: Justin Erenkrantz Date: Fri, 15 Feb 2002 01:17:53 +0000 (+0000) Subject: Just toss these debug messages since so many people use httpd with X-Git-Tag: 2.0.33~253 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=097ccb920f427a7f08219a226a1fcdc4baa3d630;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/CHANGES b/CHANGES index afc7d0f5376..e898f4a80d0 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 854c8179e0a..79a07a0cf34 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; }