[jboss-cvs] JBossAS SVN: r83336 - branches/Branch_5_x/system/src/main/org/jboss/system/server.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 22 19:06:08 EST 2009


Author: galder.zamarreno at jboss.com
Date: 2009-01-22 19:06:08 -0500 (Thu, 22 Jan 2009)
New Revision: 83336

Modified:
   branches/Branch_5_x/system/src/main/org/jboss/system/server/ServerInfo.java
Log:
[JBAS-6411] Add Java Runtime information.

Modified: branches/Branch_5_x/system/src/main/org/jboss/system/server/ServerInfo.java
===================================================================
--- branches/Branch_5_x/system/src/main/org/jboss/system/server/ServerInfo.java	2009-01-23 00:01:29 UTC (rev 83335)
+++ branches/Branch_5_x/system/src/main/org/jboss/system/server/ServerInfo.java	2009-01-23 00:06:08 UTC (rev 83336)
@@ -128,6 +128,10 @@
       System.getProperty("java.version") + "," +
       System.getProperty("java.vendor"));
       
+      log.info("Java Runtime: " +
+      System.getProperty("java.runtime.name") + " (build " +
+      System.getProperty("java.runtime.version") + ")");   
+      
       log.info("Java VM: " +
       System.getProperty("java.vm.name") + " " +
       System.getProperty("java.vm.version") + "," +




More information about the jboss-cvs-commits mailing list