From e59c24bea25516c3671e72c96265c44915cdadb9 Mon Sep 17 00:00:00 2001 From: Justin Erenkrantz Date: Wed, 6 Feb 2002 16:56:52 +0000 Subject: [PATCH] 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 --- server/protocol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/protocol.c b/server/protocol.c index 81e4fc5d8a..73b7f60508 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; } -- 2.50.1