summaryrefslogtreecommitdiffstats
path: root/server/protocol.c
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-02-15 02:17:53 +0100
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-02-15 02:17:53 +0100
commit097ccb920f427a7f08219a226a1fcdc4baa3d630 (patch)
tree2a68781edde7f1a770f037ec1495bc8556cfb982 /server/protocol.c
parentThis is a bug or two away from working... Open both the header and data (diff)
downloadapache2-097ccb920f427a7f08219a226a1fcdc4baa3d630.tar.xz
apache2-097ccb920f427a7f08219a226a1fcdc4baa3d630.zip
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
Diffstat (limited to 'server/protocol.c')
-rw-r--r--server/protocol.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/server/protocol.c b/server/protocol.c
index 854c8179e0..79a07a0cf3 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;
}