Commit 4916fa29 authored by Paul Querna's avatar Paul Querna
Browse files

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
parent 28cac315
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
        }