You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by le...@apache.org on 2002/08/23 11:36:17 UTC

cvs commit: jakarta-avalon-excalibur/altrmi/src/java/org/apache/excalibur/altrmi/client/impl AbstractConnectionPinger.java

leif        2002/08/23 02:36:17

  Modified:    altrmi/src/java/org/apache/excalibur/altrmi/client/impl
                        AbstractConnectionPinger.java
  Log:
  Renamed the pinger thread so that it is obvious that it is owned by Altrmi.
  Commented out a debug message (We really need a logger in here)
  
  Revision  Changes    Path
  1.5       +5 -3      jakarta-avalon-excalibur/altrmi/src/java/org/apache/excalibur/altrmi/client/impl/AbstractConnectionPinger.java
  
  Index: AbstractConnectionPinger.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/altrmi/src/java/org/apache/excalibur/altrmi/client/impl/AbstractConnectionPinger.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AbstractConnectionPinger.java	23 Jun 2002 17:03:44 -0000	1.4
  +++ AbstractConnectionPinger.java	23 Aug 2002 09:36:17 -0000	1.5
  @@ -71,7 +71,7 @@
       public void start()
       {
   
  -        mThread = new Thread( this ,"ConnectionPinger Thread");
  +        mThread = new Thread( this ,"AltrmiConnectionPinger Thread");
   
           mThread.start();
       }
  @@ -104,7 +104,9 @@
           }
           catch( AltrmiConnectionClosedException cce )
           {
  -            System.out.println( "Pinger Connection closed" );
  +            // We really need a logger or something to be able to see this
  +            //  for debugging.
  +            //System.out.println( "Pinger Connection closed" );
   
               // no need to ping anymore.
           }
  
  
  

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