[jboss-cvs] JBossAS SVN: r77469 - trunk/ejb3/src/main/org/jboss/ejb3/client.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Aug 25 22:09:38 EDT 2008


Author: scott.stark at jboss.org
Date: 2008-08-25 22:09:38 -0400 (Mon, 25 Aug 2008)
New Revision: 77469

Modified:
   trunk/ejb3/src/main/org/jboss/ejb3/client/ClientLauncher.java
Log:
JBAS-5888, log more info about version, classpath

Modified: trunk/ejb3/src/main/org/jboss/ejb3/client/ClientLauncher.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/client/ClientLauncher.java	2008-08-26 02:05:55 UTC (rev 77468)
+++ trunk/ejb3/src/main/org/jboss/ejb3/client/ClientLauncher.java	2008-08-26 02:09:38 UTC (rev 77469)
@@ -79,6 +79,7 @@
    implements AppClientLauncher
 {
    private static final Logger log = Logger.getLogger(ClientLauncher.class);
+   private static final String VERSION = "$Revision$";
    private static Throwable exception;
    /** The kernel */
    private static Kernel kernel;
@@ -175,6 +176,7 @@
          Properties jndiEnv)
       throws Throwable
    {
+      log.info("ClientLauncher, version: "+VERSION);
       // Init the kernel and deployers
       args = init(args);
 
@@ -216,18 +218,18 @@
          VFSClassLoaderFactory factory = new VFSClassLoaderFactory("ClientLauncherClassPath");
          ArrayList<String> roots = new ArrayList<String>();
          // Create the classpath
-         log.debug("Setting up classpath from: ");
+         log.info("Setting up classpath from: ");
          for(String path : classPath)
          {
-            log.debug(path);
+            log.info(path);
             roots.add(path);
          }
          for(String path : extraClassPath)
          {
-            log.debug(path);
+            log.info(path);
             roots.add(path);
          }
-         log.debug("End classpath");
+         log.info("End classpath");
          factory.setRoots(roots);
          beanFactories.add(factory);
          // ClientContainer(xml, mainClass, applicationClientName, jndiEnv);
@@ -489,7 +491,7 @@
     * 
     * @author <a href="mailto:adrian.brock at happeningtimes.com">Adrian Brock</a>
     * @author Scott.Stark at jboss.org
-    * @version $Revision:$
+    * @version $Revision$
     */
    public static class JBossRMIClassLoader
       extends RMIClassLoaderSpi


Property changes on: trunk/ejb3/src/main/org/jboss/ejb3/client/ClientLauncher.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision




More information about the jboss-cvs-commits mailing list