From: Paul Querna Date: Mon, 25 Oct 2004 15:59:43 +0000 (+0000) Subject: Use a more descriptive error message, and make it an INFO insteead of NOTICE. X-Git-Tag: 2.1.1~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01148487b7642a6fed8f5b63262281d0963c89e6;p=apache Use a more descriptive error message, and make it an INFO insteead of NOTICE. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105593 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index cdb773b838..349a058b4f 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -614,8 +614,8 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb) r->protocol = apr_pstrdup(r->pool, "HTTP/1.0"); } else if (r->connection->keepalive != AP_CONN_KEEPALIVE) { - ap_log_rerror(APLOG_MARK, APLOG_NOTICE, rv, r, - "request line read error."); + ap_log_rerror(APLOG_MARK, APLOG_INFO, rv, r, + "Error while reading request line. (client didn't send a request?)"); } return 0; }