fielding 97/10/05 01:37:45
Modified: src/main http_protocol.c
Log:
Losing the client connection should result in a warning, since it
can be indicative of site design problems. It is not a DEBUG condition.
Revision Changes Path
1.164 +3 -3 apachen/src/main/http_protocol.c
Index: http_protocol.c
===================================================================
RCS file: /export/home/cvs/apachen/src/main/http_protocol.c,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- http_protocol.c 1997/09/26 03:26:24 1.163
+++ http_protocol.c 1997/10/05 08:37:44 1.164
@@ -1762,7 +1762,7 @@
else if (errno == EAGAIN)
continue;
else {
- aplog_error(APLOG_MARK, APLOG_DEBUG, r->server,
+ aplog_error(APLOG_MARK, APLOG_WARNING, r->server,
"send body lost connection to %s",
get_remote_host(r->connection,
r->per_dir_config,
@@ -1851,7 +1851,7 @@
else if (errno == EAGAIN)
continue;
else {
- aplog_error(APLOG_MARK, APLOG_DEBUG, r->server,
+ aplog_error(APLOG_MARK, APLOG_WARNING, r->server,
"send body lost connection to %s",
get_remote_host(r->connection,
r->per_dir_config,
@@ -1919,7 +1919,7 @@
else if (errno == EAGAIN)
continue;
else {
- aplog_error(APLOG_MARK, APLOG_DEBUG, r->server,
+ aplog_error(APLOG_MARK, APLOG_WARNING, r->server,
"send mmap lost connection to %s",
get_remote_host(r->connection,
r->per_dir_config,