From 1c61318be4333eae2b7581edfccdf1ef4db0c573 Mon Sep 17 00:00:00 2001 From: "gyeongseok.seo" Date: Thu, 19 Jul 2012 22:48:56 +0900 Subject: [PATCH] [Title] Fixed wrong logger. [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 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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()) { -- 2.7.4