JAL-3609 Report when scale setting used.
[jalview.git] / src / jalview / bin / Launcher.java
index 8b07142..fecacbe 100644 (file)
@@ -153,12 +153,11 @@ public class Launcher
       }
     }
 
-    System.out.println("About to run HiDPISetting.getScalePropertyArg()");
     String scalePropertyArg = HiDPISetting.getScalePropertyArg();
-    System.out.println(
-            "Ran HiDPISetting.getScalePropertyArg() = " + scalePropertyArg);
     if (scalePropertyArg != null)
     {
+      System.out.println("Running " + startClass + " with scale setting "
+              + scalePropertyArg);
       command.add(scalePropertyArg);
     }
 
@@ -169,7 +168,8 @@ public class Launcher
 
     // System.out.println("COMMAND: " + String.join(" ", builder.command()));
     System.out.println("Running " + startClass + " with "
-            + (memSetting == null ? "no memory setting" : memSetting));
+            + (memSetting == null ? "no memory setting"
+                    : ("memory setting " + memSetting)));
 
     if (Boolean.parseBoolean(System.getProperty("launcherstop")))
     {