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,
  
  
  

Reply via email to