mturk       2002/07/08 05:13:51

  Modified:    jk/native2/server/apache2 jk_logger_apache2.c
  Log:
  Change the JK_LOG_INFO to be logged as [notice] instead of [warning].
  This is much more intuitive for the context we are logging.
  
  Revision  Changes    Path
  1.27      +1 -1      
jakarta-tomcat-connectors/jk/native2/server/apache2/jk_logger_apache2.c
  
  Index: jk_logger_apache2.c
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native2/server/apache2/jk_logger_apache2.c,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- jk_logger_apache2.c       12 Jun 2002 12:42:25 -0000      1.26
  +++ jk_logger_apache2.c       8 Jul 2002 12:13:51 -0000       1.27
  @@ -136,7 +136,7 @@
       if( level == JK_LOG_DEBUG_LEVEL ) {
           ap_log_error( file, line, APLOG_DEBUG | APLOG_NOERRNO, 0, s, buf);
       } else if( level == JK_LOG_INFO_LEVEL ) {
  -        ap_log_error( file, line, APLOG_WARNING | APLOG_NOERRNO, 0, s, buf);
  +        ap_log_error( file, line, APLOG_NOTICE | APLOG_NOERRNO, 0, s, buf);
       } else {
           ap_log_error( file, line, APLOG_ERR | APLOG_NOERRNO, 0, s, buf);
       }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to