You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Randy Terbush <ra...@hyperreal.org> on 1997/09/03 06:54:55 UTC

cvs commit: apachen/src/main http_main.c http_protocol.c

randy       97/09/02 21:54:55

  Modified:    src/main http_main.c http_protocol.c
  Log:
  Logging tweaks.
  
  Revision  Changes    Path
  1.214     +1 -1      apachen/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/http_main.c,v
  retrieving revision 1.213
  retrieving revision 1.214
  diff -u -r1.213 -r1.214
  --- http_main.c	1997/08/31 20:13:05	1.213
  +++ http_main.c	1997/09/03 04:54:48	1.214
  @@ -689,7 +689,7 @@
       if (timeout_req != NULL) dirconf = timeout_req->per_dir_config;
       else dirconf = current_conn->server->lookup_defaults;
       if (sig == SIGPIPE) {
  -        ap_snprintf(errstr, sizeof(errstr), "%s lost connection to client %s",
  +        ap_snprintf(errstr, sizeof(errstr), "%s lost connection to %s",
   		    timeout_name ? timeout_name : "request",
   		    get_remote_host(current_conn, dirconf, REMOTE_NAME));
       } else {
  
  
  
  1.158     +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.157
  retrieving revision 1.158
  diff -u -r1.157 -r1.158
  --- http_protocol.c	1997/09/01 02:46:47	1.157
  +++ http_protocol.c	1997/09/03 04:54:52	1.158
  @@ -1671,7 +1671,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, REMOTE_NAME));
  @@ -1750,7 +1750,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, REMOTE_NAME));
  @@ -1812,7 +1812,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, REMOTE_NAME));