Logging: Removed launch config logging.
authorminkee.lee <minkee.lee@samsung.com>
Tue, 30 Jun 2015 10:19:29 +0000 (19:19 +0900)
committerminkee.lee <minkee.lee@samsung.com>
Tue, 30 Jun 2015 10:20:34 +0000 (19:20 +0900)
- Removed logging of contents in launch config file.

Change-Id: I870ac9e372de2535b58f1af202fd0eebbb06bdd9
Signed-off-by: minkee.lee <minkee.lee@samsung.com>
src/org/tizen/emulator/manager/vms/VMLauncher.java

index ddb7181..ffa707f 100644 (file)
@@ -189,14 +189,6 @@ public class VMLauncher {
                        pb.directory(new File(binPath));
                }
 
-               // Log launch config.
-               String launchConfig = StringResources.NEW_LINE;
-               for (String str : LaunchConfig.readLaunchConfig(vmName)) {
-                       launchConfig += (str + StringResources.NEW_LINE);
-               }
-               EMLogger.getLogger().log(Level.INFO, "Launch config file : "
-               + LaunchConfig.getLaunchConfigPath(vmName) + launchConfig);
-
                Process process = null;
                try {
                        process = pb.start();