Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 24805 invoked by uid 6000); 7 Feb 1998 02:29:22 -0000 Received: (qmail 24799 invoked by alias); 7 Feb 1998 02:29:21 -0000 Delivered-To: apache-1.3-cvs@hyperreal.org Received: (qmail 24797 invoked by uid 24); 7 Feb 1998 02:29:20 -0000 Date: 7 Feb 1998 02:29:20 -0000 Message-ID: <19980207022920.24796.qmail@hyperreal.org> From: brian@hyperreal.org To: apache-1.3-cvs@hyperreal.org Subject: cvs commit: apache-1.3/src/main http_main.c http_protocol.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org brian 98/02/06 18:29:20 Modified: src/main http_main.c http_protocol.c Log: Consensus on this list seemed to be that the "send lost connection" messages, while not a "debug"-level message, was also not a "warning" message, as frequently there's not much that a server administrator can do to mitigate those reports directly. Swarms of lost connections may indicate connection troubles, but individual ones are not worth filling logfiles with. Revision Changes Path 1.282 +1 -1 apache-1.3/src/main/http_main.c Index: http_main.c =================================================================== RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v retrieving revision 1.281 retrieving revision 1.282 diff -u -r1.281 -r1.282 --- http_main.c 1998/02/06 17:59:29 1.281 +++ http_main.c 1998/02/07 02:29:17 1.282 @@ -841,7 +841,7 @@ } if (!current_conn->keptalive) - aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, + aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, current_conn->server, errstr); if (timeout_req) { 1.186 +3 -3 apache-1.3/src/main/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /export/home/cvs/apache-1.3/src/main/http_protocol.c,v retrieving revision 1.185 retrieving revision 1.186 diff -u -r1.185 -r1.186 --- http_protocol.c 1998/02/04 21:23:33 1.185 +++ http_protocol.c 1998/02/07 02:29:18 1.186 @@ -1688,7 +1688,7 @@ else if (errno == EAGAIN) continue; else { - aplog_error(APLOG_MARK, APLOG_WARNING, r->server, + aplog_error(APLOG_MARK, APLOG_NOTICE, r->server, "send body lost connection to %s", get_remote_host(r->connection, r->per_dir_config, @@ -1777,7 +1777,7 @@ else if (errno == EAGAIN) continue; else { - aplog_error(APLOG_MARK, APLOG_WARNING, r->server, + aplog_error(APLOG_MARK, APLOG_NOTICE, r->server, "send body lost connection to %s", get_remote_host(r->connection, r->per_dir_config, @@ -1845,7 +1845,7 @@ else if (errno == EAGAIN) continue; else { - aplog_error(APLOG_MARK, APLOG_WARNING, r->server, + aplog_error(APLOG_MARK, APLOG_NOTICE, r->server, "send mmap lost connection to %s", get_remote_host(r->connection, r->per_dir_config,