User: jules_gosnell
  Date: 02/02/18 16:09:01

  Modified:    jetty/src/main/org/jboss/jetty/util NaiveTimeOutManager.java
  Log:
  sort logging
  
  Revision  Changes    Path
  1.9       +5 -3      
contrib/jetty/src/main/org/jboss/jetty/util/NaiveTimeOutManager.java
  
  Index: NaiveTimeOutManager.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/util/NaiveTimeOutManager.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- NaiveTimeOutManager.java  16 Feb 2002 01:04:32 -0000      1.8
  +++ NaiveTimeOutManager.java  19 Feb 2002 00:09:01 -0000      1.9
  @@ -5,7 +5,7 @@
    * See terms of license at gnu.org.
    */
   
  -// $Id: NaiveTimeOutManager.java,v 1.8 2002/02/16 01:04:32 jules_gosnell Exp $
  +// $Id: NaiveTimeOutManager.java,v 1.9 2002/02/19 00:09:01 jules_gosnell Exp $
   
   //------------------------------------------------------------------------------
   
  @@ -79,7 +79,8 @@
       public void
         run()
       {
  -      _log.info("background thread started: "+NaiveTimeOutManager.this);
  +      if (_log.isDebugEnabled())
  +     _log.debug("background thread started: "+NaiveTimeOutManager.this);
         while (_running)
         {
        try
  @@ -90,7 +91,8 @@
        catch (InterruptedException e)
        {}
         }
  -      _log.info("background thread ended: "+NaiveTimeOutManager.this);
  +      if (_log.isDebugEnabled())
  +     _log.debug("background thread ended: "+NaiveTimeOutManager.this);
       }
     }
   
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to