]> granicus.if.org Git - apache/commitdiff
Just toss these debug messages since so many people use httpd with
authorJustin Erenkrantz <jerenkrantz@apache.org>
Fri, 15 Feb 2002 01:17:53 +0000 (01:17 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Fri, 15 Feb 2002 01:17:53 +0000 (01:17 +0000)
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
server/protocol.c

diff --git a/CHANGES b/CHANGES
index afc7d0f537617b4bb939dc054bddb95b4076eb32..e898f4a80d02c28a9bdab4d9399a9793b56c8c2e 100644 (file)
--- 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]
 
index 854c8179e0a456c0f0987cffc7a7ce5afb170d03..79a07a0cf34381d0b3d0f75b66f758f77f0ee86b 100644 (file)
@@ -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;
         }