[Title] Fixed wrong logger.
authorgyeongseok.seo <gyeongseok.seo@samsung.com>
Thu, 19 Jul 2012 13:48:56 +0000 (22:48 +0900)
committergyeongseok.seo <gyeongseok.seo@samsung.com>
Thu, 19 Jul 2012 13:48:56 +0000 (22:48 +0900)
[Type] Bugfix
[Module] cli
[Priority] Minor
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

Change-Id: I13ac05722df9fd8ff351f0bcb95df71baa910059

org.tizen.cli/src/org/tizen/cli/exec/WRTLauncher.java

index 5cff177..16fa237 100644 (file)
@@ -36,7 +36,6 @@ import org.tizen.common.core.command.Prompter;
 import org.tizen.common.util.HostUtil;
 import org.tizen.common.util.OSChecker;
 import org.tizen.common.util.StringUtil;
-import org.tizen.common.util.log.Logger;
 import org.tizen.sdblib.IDevice;
 import org.tizen.sdblib.SmartDevelopmentBridge;
 
@@ -145,8 +144,8 @@ extends AbstractLauncher
             SmartDevelopmentBridge.init();
             SmartDevelopmentBridge.createBridge(sdbPath, true);
         } catch (Throwable t) {
-            Logger.error("Problem occurred while initializing sdb", t.getMessage(), t);
-            prompter.notify("Failed to start sdb");
+            logger.error("Problem occurred while initializing sdb", t.getMessage(), t);
+            prompter.notify("Failed to start sdb : " + sdbPath );
         }
 
         if (OSChecker.isWindows()) {