]> granicus.if.org Git - apache/commitdiff
Use a more descriptive error message, and make it an INFO insteead of NOTICE.
authorPaul Querna <pquerna@apache.org>
Mon, 25 Oct 2004 15:59:43 +0000 (15:59 +0000)
committerPaul Querna <pquerna@apache.org>
Mon, 25 Oct 2004 15:59:43 +0000 (15:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105593 13f79535-47bb-0310-9956-ffa450edef68

server/protocol.c

index cdb773b838169c3a84a860015d297d03f762aad0..349a058b4f3491fb753749e9485f146c3726d454 100644 (file)
@@ -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;
         }