]> granicus.if.org Git - apache/commitdiff
We totally disregard the fact that notice is level 5 and always print
authorJustin Erenkrantz <jerenkrantz@apache.org>
Wed, 6 Feb 2002 16:56:52 +0000 (16:56 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Wed, 6 Feb 2002 16:56:52 +0000 (16:56 +0000)
that.  Yuck.  Make these error message DEBUG level then.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93295 13f79535-47bb-0310-9956-ffa450edef68

server/protocol.c

index 81e4fc5d8a65ab9f78d12a0fc4c391a51e46f357..73b7f60508415d188625d755b2aa44ec225cb6fa 100644 (file)
@@ -597,7 +597,7 @@ static int read_request_line(request_rec *r)
                          &len, r, 0);
 
         if (rv != APR_SUCCESS) {
-            ap_log_rerror(APLOG_MARK, APLOG_NOTICE, rv, r, "read_request_line() failed");
+            ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, "read_request_line() failed");
                r->request_time = apr_time_now();
             return 0;
         }
@@ -706,7 +706,7 @@ static void get_mime_headers(request_rec *r)
 
         if (rv != APR_SUCCESS) {
             r->status = HTTP_BAD_REQUEST;
-            ap_log_rerror(APLOG_MARK, APLOG_NOTICE, rv, r, "get_mime_headers() failed");
+            ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, "get_mime_headers() failed");
             return;
         }