From: Justin Erenkrantz Date: Wed, 6 Feb 2002 16:56:52 +0000 (+0000) Subject: We totally disregard the fact that notice is level 5 and always print X-Git-Tag: 2.0.32~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=581ada359b75adf6f3a77356798e4cb9395d8216;p=thirdparty%2Fapache%2Fhttpd.git We totally disregard the fact that notice is level 5 and always print 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 --- diff --git a/server/protocol.c b/server/protocol.c index 81e4fc5d8a6..73b7f605084 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -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; }