2004/01/19 20:57:21
authormegacz <megacz@xwt.org>
Fri, 30 Jan 2004 08:04:19 +0000 (08:04 +0000)
committermegacz <megacz@xwt.org>
Fri, 30 Jan 2004 08:04:19 +0000 (08:04 +0000)
darcs-hash:20040130080419-2ba56-1edaa64bf1db787ec165aef78e49b624054e4916.gz

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");