[jboss-cvs] JBossAS SVN: r85615 - branches/Branch_5_x/main/src/main/org/jboss.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Mar 8 00:08:20 EST 2009


Author: david.lloyd at jboss.com
Date: 2009-03-08 00:08:19 -0500 (Sun, 08 Mar 2009)
New Revision: 85615

Modified:
   branches/Branch_5_x/main/src/main/org/jboss/Main.java
Log:
Fix the "--log=jdk" option to use the right class name

Modified: branches/Branch_5_x/main/src/main/org/jboss/Main.java
===================================================================
--- branches/Branch_5_x/main/src/main/org/jboss/Main.java	2009-03-08 03:32:05 UTC (rev 85614)
+++ branches/Branch_5_x/main/src/main/org/jboss/Main.java	2009-03-08 05:08:19 UTC (rev 85615)
@@ -502,7 +502,7 @@
                if( arg.equalsIgnoreCase("log4j") )
                   logPlugin = "org.jboss.logging.Log4jLoggerPlugin";
                else if( arg.equalsIgnoreCase("jdk") )
-                  logPlugin = "org.jboss.logging.JDK14LoggerPlugin";
+                  logPlugin = "org.jboss.logging.jdk.JDK14LoggerPlugin";
                System.setProperty("org.jboss.logging.Logger.pluginClass", logPlugin);
                break;
             }




More information about the jboss-cvs-commits mailing list