fielding    98/02/08 16:45:59

  Modified:    src/main http_main.c http_protocol.c
  Log:
  Reverse last change.  Vetoed because they are warnings and because
  APLOG_NOTICE is always logged regardless of log level.
  
  Revision  Changes    Path
  1.285     +1 -1      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.284
  retrieving revision 1.285
  diff -u -r1.284 -r1.285
  --- http_main.c       1998/02/08 18:16:01     1.284
  +++ http_main.c       1998/02/09 00:45:56     1.285
  @@ -845,7 +845,7 @@
       }
   
       if (!current_conn->keptalive)
  -     aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE,
  +     aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING,
                    current_conn->server, errstr);
   
       if (timeout_req) {
  
  
  
  1.187     +3 -3      apache-1.3/src/main/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_protocol.c,v
  retrieving revision 1.186
  retrieving revision 1.187
  diff -u -r1.186 -r1.187
  --- http_protocol.c   1998/02/07 02:29:18     1.186
  +++ http_protocol.c   1998/02/09 00:45:57     1.187
  @@ -1688,7 +1688,7 @@
                   else if (errno == EAGAIN)
                       continue;
                   else {
  -                    aplog_error(APLOG_MARK, APLOG_NOTICE, 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,
  @@ -1777,7 +1777,7 @@
                   else if (errno == EAGAIN)
                       continue;
                   else {
  -                    aplog_error(APLOG_MARK, APLOG_NOTICE, 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,
  @@ -1845,7 +1845,7 @@
                   else if (errno == EAGAIN)
                       continue;
                   else {
  -                    aplog_error(APLOG_MARK, APLOG_NOTICE, 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,
  
  
  

Reply via email to