You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2002/05/10 02:01:44 UTC

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common ChannelJni.java

costin      02/05/09 17:01:44

  Modified:    jk/java/org/apache/jk/common ChannelJni.java
  Log:
  Less verbosity on the jni channel
  
  Revision  Changes    Path
  1.9       +2 -2      jakarta-tomcat-connectors/jk/java/org/apache/jk/common/ChannelJni.java
  
  Index: ChannelJni.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/java/org/apache/jk/common/ChannelJni.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ChannelJni.java	25 Apr 2002 18:22:54 -0000	1.8
  +++ ChannelJni.java	10 May 2002 00:01:44 -0000	1.9
  @@ -167,7 +167,7 @@
           try {
               // first, we need to get an endpoint. It should be
               // per/thread - and probably stored by the C side.
  -            if( log.isInfoEnabled() ) log.info("Received request " + xEnv);
  +            if( log.isDebugEnabled() ) log.debug("Received request " + xEnv);
               
               // The endpoint will store the message pt.
               msg.processHeader();
  @@ -175,7 +175,7 @@
   
               int status= next.invoke(  msg, ep );
               
  -            if( log.isInfoEnabled() ) log.info("after processCallbacks " + status);
  +            if( log.isDebugEnabled() ) log.debug("after processCallbacks " + status);
               
               return status;
           } catch( Exception ex ) {
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>