]> source.dussan.org Git - sonar-scanner-cli.git/commitdiff
SONARPLUGINS-2038 Log the value of the system property "sun.arch.data.model" at start-up
authorFabrice Bellingard <bellingard@gmail.com>
Thu, 19 Jul 2012 12:44:50 +0000 (12:44 +0000)
committerFabrice Bellingard <bellingard@gmail.com>
Thu, 19 Jul 2012 12:44:50 +0000 (12:44 +0000)
src/main/java/org/sonar/runner/Main.java

index 7142c24c360db387cf178467b72afef1a827d24a..dbb998ab31f73f78a302c43931d06609c79202f2 100644 (file)
@@ -50,8 +50,9 @@ public final class Main {
       Runner runner = Runner.create(props);
       log("Runner version: " + runner.getRunnerVersion());
       log("Java version: " + System.getProperty("java.version", "<unknown java version>")
-          + ", vendor: " + System.getProperty("java.vendor", "<unknown vendor>"));
-      log("OS name: \"" + System.getProperty("os.name") + "\", version: \"" + System.getProperty("os.version") + "\", arch: \"" + System.getProperty("os.arch") + "\"");
+        + ", vendor: " + System.getProperty("java.vendor", "<unknown vendor>"));
+      log("OS name: \"" + System.getProperty("os.name") + "\", version: \"" + System.getProperty("os.version") + "\"");
+      log("Arch: \"" + System.getProperty("os.arch") + "\", sun.arch.data.model: \"" + System.getProperty("sun.arch.data.model") + "\"");
       log("Server: " + runner.getServerURL());
       try {
         log("Work directory: " + runner.getWorkDir().getCanonicalPath());