Updated Branches: refs/heads/master cd3ba7812 -> 96c4f3c94
Remove unnecessary logs Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/42f4e0fa Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/42f4e0fa Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/42f4e0fa Branch: refs/heads/master Commit: 42f4e0fa7e0a6ca184e34804a36755b56ae70e9f Parents: bc375af Author: Manula Thantriwatte <[email protected]> Authored: Thu Dec 12 15:30:09 2013 +0530 Committer: Manula Thantriwatte <[email protected]> Committed: Thu Dec 12 15:30:09 2013 +0530 ---------------------------------------------------------------------- .../main/java/org/apache/stratos/cli/RestCommandLineService.java | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/42f4e0fa/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/RestCommandLineService.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/RestCommandLineService.java b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/RestCommandLineService.java index 999793c..6fb56be 100644 --- a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/RestCommandLineService.java +++ b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/RestCommandLineService.java @@ -332,7 +332,6 @@ public class RestCommandLineService { System.out.format("Subscribing to data cartridge %s with alias %s.%n", dataCartridgeType, dataCartridgeAlias); try { - System.out.println("First try"); String subscription = restClientService.doPost(restClientService.getUrl() + subscribCartridgeRestEndpoint, completeJsonSubscribeString, restClientService.getUsername(), restClientService.getPassword()); @@ -366,8 +365,6 @@ public class RestCommandLineService { cartridgeInfoBean.setAsPolicy(asPolicy); cartridgeInfoBean.setDepPolicy(depPolicy); - System.out.println("Second try"); - jsonSubscribeString = gson.toJson(cartridgeInfoBean, CartridgeInfoBean.class); completeJsonSubscribeString = "{\"cartridgeInfoBean\":" + jsonSubscribeString + "}";
