2004/01/19 20:57:21
[org.ibex.core.git] / src / org / xwt / Platform.java
index 8c4df6e..af837a4 100644 (file)
@@ -39,7 +39,7 @@ public abstract class Platform {
     // reflection.
 
     static {
-        System.err.println("Detecting JVM...");
+        System.err.print("Detecting JVM...");
         try {
             String vendor = System.getProperty("java.vendor", "");
             String version = System.getProperty("java.version", "");
@@ -60,7 +60,8 @@ public abstract class Platform {
                 Log.error(Platform.class, "Unable to detect JVM");
                 criticalAbort("Unable to detect JVM");
             }
-
+            
+            System.err.println(" " + os_name + " ==> org.xwt.plat." + platform_class);
             if (platform_class != null) Class.forName("org.xwt.plat." + platform_class).newInstance();
 
             String term = Platform.getEnv("TERM");