You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2014/04/08 23:05:57 UTC

svn commit: r1585835 - /commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactory.java

Author: sebb
Date: Tue Apr  8 21:05:57 2014
New Revision: 1585835

URL: http://svn.apache.org/r1585835
Log:
Extra info output

Modified:
    commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactory.java

Modified: commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactory.java?rev=1585835&r1=1585834&r2=1585835&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactory.java (original)
+++ commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactory.java Tue Apr  8 21:05:57 2014
@@ -263,6 +263,7 @@ public class RemoteCacheServerFactory
             try
             {
                 LocateRegistry.createRegistry( registryPort );
+                log.info("Created the registry on port " + registryPort);
             }
             catch ( RemoteException e )
             {
@@ -569,6 +570,9 @@ public class RemoteCacheServerFactory
             t.setName( "JCS-RemoteCacheServerFactory-" + oldName );
             t.setDaemon( true );
             t.setPriority( Thread.MIN_PRIORITY );
+            if (log.isDebugEnabled()){
+                log.debug("Created thread: " + t);
+            }
             return t;
         }
     }