From: gyeongseok.seo Date: Thu, 19 Jul 2012 13:48:56 +0000 (+0900) Subject: [Title] Fixed wrong logger. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c61318be4333eae2b7581edfccdf1ef4db0c573;p=sdk%2Ftools%2Fcli.git [Title] Fixed wrong logger. [Type] Bugfix [Module] cli [Priority] Minor [Jira#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] Change-Id: I13ac05722df9fd8ff351f0bcb95df71baa910059 --- diff --git a/org.tizen.cli/src/org/tizen/cli/exec/WRTLauncher.java b/org.tizen.cli/src/org/tizen/cli/exec/WRTLauncher.java index 5cff177..16fa237 100644 --- a/org.tizen.cli/src/org/tizen/cli/exec/WRTLauncher.java +++ b/org.tizen.cli/src/org/tizen/cli/exec/WRTLauncher.java @@ -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()) {