From: hyunsik.noh Date: Fri, 17 Jan 2014 01:54:56 +0000 (+0900) Subject: CLI: Add progress log for ListAppCLI X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F26%2F15226%2F2;p=sdk%2Ftools%2Fcli.git CLI: Add progress log for ListAppCLI Change-Id: Id01138a9cb71c8a0e69eebcebe986e00b2eee5c1 Signed-off-by: hyunsik.noh --- diff --git a/org.tizen.ncli.ide/src/org/tizen/ncli/ide/subcommands/ListAppCLICommand.java b/org.tizen.ncli.ide/src/org/tizen/ncli/ide/subcommands/ListAppCLICommand.java index 01c5c3c..ad61a06 100644 --- a/org.tizen.ncli.ide/src/org/tizen/ncli/ide/subcommands/ListAppCLICommand.java +++ b/org.tizen.ncli.ide/src/org/tizen/ncli/ide/subcommands/ListAppCLICommand.java @@ -55,7 +55,7 @@ public class ListAppCLICommand extends AbstractSubCommand { getAppList(CLIConstant.NATIVE_PKG_EXT); getAppList(CLIConstant.WEB_PKG_EXT); } else { - System.out.println(TizenCLIMessages.FAIL_TARGET); + progressLog.info(TizenCLIMessages.FAIL_TARGET); } return null; } @@ -80,7 +80,7 @@ public class ListAppCLICommand extends AbstractSubCommand { String[] lines = returnExecute.split("\n"); for(String line: lines) { if(line.startsWith(PKG_TYPE)) { - System.out.println(line); + progressLog.info(line); } } }