You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fi...@hyperreal.org on 1998/04/06 01:16:11 UTC

cvs commit: apache-1.3/src/main http_main.c http_protocol.c

fielding    98/04/05 16:16:11

  Modified:    src      CHANGES
               src/main http_main.c http_protocol.c
  Log:
  Reduce logging level of "normal" warning messages to APLOG_INFO,
  since we are now logging APLOG_WARNING by default.
  
  Revision  Changes    Path
  1.757     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.756
  retrieving revision 1.757
  diff -u -r1.756 -r1.757
  --- CHANGES	1998/04/05 21:34:37	1.756
  +++ CHANGES	1998/04/05 23:16:08	1.757
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3b6
   
  +  *) Reduce logging level of "normal" warning messages to APLOG_INFO,
  +     since we are now logging APLOG_WARNING by default. [Roy Fielding]
  +
     *) PORT: OS/2 tweak to deal with multiple .exe targets. [Brian Havard]
    
     *) Add documentation file and src/Configuration.tmpl entry for the
  
  
  
  1.319     +4 -4      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.318
  retrieving revision 1.319
  diff -u -r1.318 -r1.319
  --- http_main.c	1998/04/01 14:24:30	1.318
  +++ http_main.c	1998/04/05 23:16:09	1.319
  @@ -120,8 +120,8 @@
   /* Set this non-zero if you are prepared to put up with more than one log entry per second */
   #define SEVERELY_VERBOSE	    0
   
  -  /* APD1() to APD5() are macros to help us debug. Then can either
  -   * log to the screen or the error_log file. In release builds, this
  +  /* APD1() to APD5() are macros to help us debug. They can either
  +   * log to the screen or the error_log file. In release builds, these
      * macros do nothing. In debug builds, they send messages at priority
      * "debug" to the error log file, or if DEBUG_TO_CONSOLE is defined,
      * to the console.
  @@ -839,14 +839,14 @@
   	dirconf = current_conn->server->lookup_defaults;
       if (!current_conn->keptalive) {
   	if (sig == SIGPIPE) {
  -	    aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING,
  +	    aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO,
   			current_conn->server,
   			"%s client stopped connection before %s completed",
   			get_remote_host(current_conn, dirconf, REMOTE_NAME),
   			timeout_name ? timeout_name : "request");
   	}
   	else {
  -	    aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING,
  +	    aplog_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO,
   			current_conn->server,
   			"%s timed out for %s",
   			timeout_name ? timeout_name : "request",
  
  
  
  1.208     +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.207
  retrieving revision 1.208
  diff -u -r1.207 -r1.208
  --- http_protocol.c	1998/04/01 20:53:16	1.207
  +++ http_protocol.c	1998/04/05 23:16:10	1.208
  @@ -1627,7 +1627,7 @@
                   else if (errno == EAGAIN)
                       continue;
                   else {
  -                    aplog_error(APLOG_MARK, APLOG_WARNING, r->server,
  +                    aplog_error(APLOG_MARK, APLOG_INFO, r->server,
                        "%s client stopped connection before send body completed",
                                   get_remote_host(r->connection,
                                                   r->per_dir_config,
  @@ -1725,7 +1725,7 @@
                   else if (errno == EAGAIN)
                       continue;
                   else {
  -                    aplog_error(APLOG_MARK, APLOG_WARNING, r->server,
  +                    aplog_error(APLOG_MARK, APLOG_INFO, r->server,
                        "%s client stopped connection before send body completed",
                                   get_remote_host(r->connection,
                                                   r->per_dir_config,
  @@ -1793,7 +1793,7 @@
                   else if (errno == EAGAIN)
                       continue;
                   else {
  -                    aplog_error(APLOG_MARK, APLOG_WARNING, r->server,
  +                    aplog_error(APLOG_MARK, APLOG_INFO, r->server,
                        "%s client stopped connection before send mmap completed",
                                   get_remote_host(r->connection,
                                                   r->per_dir_config,