Remove unnecessary debug log
Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/1f943622 Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/1f943622 Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/1f943622 Branch: refs/heads/master Commit: 1f94362237878342828bc8f98595ef1431e601aa Parents: f375104 Author: Manula Thantriwatte <[email protected]> Authored: Mon Feb 17 18:38:24 2014 +0530 Committer: Manula Thantriwatte <[email protected]> Committed: Mon Feb 17 18:38:24 2014 +0530 ---------------------------------------------------------------------- .../main/java/org/apache/stratos/cli/RestCommandLineService.java | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/1f943622/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 2812c26..7a7c7b8 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 @@ -795,8 +795,6 @@ public class RestCommandLineService { jsonSubscribeString = gson.toJson(cartridgeInfoBean, CartridgeInfoBean.class); completeJsonSubscribeString = "{\"cartridgeInfoBean\":" + jsonSubscribeString + "}"; - System.out.println(completeJsonSubscribeString); - HttpResponse response = restClientService.doPost(httpClient, restClientService.getUrl() + subscribCartridgeRestEndpoint, completeJsonSubscribeString, restClientService.getUsername(), restClientService.getPassword());
