Removed stdout from the openstackclient 42/75542/1
authorChandan Ghosh <cghosh12@in.ibm.com>
Wed, 9 Jan 2019 09:18:58 +0000 (14:48 +0530)
committerChandan Ghosh <cghosh12@in.ibm.com>
Wed, 9 Jan 2019 09:19:03 +0000 (14:49 +0530)
Removed stdout from the code, reported in sonar

Issue-ID: SO-1372
Change-Id: I767fae2e6d0a84949e11064b76eade5c0f87c7c1
Signed-off-by: Chandan Ghosh <cghosh12@in.ibm.com>
openstack-client/src/main/java/com/woorea/openstack/base/client/OpenStackClient.java

index 89c7840..03d2b5c 100644 (file)
@@ -59,7 +59,7 @@ public class OpenStackClient {
 
     public <T> OpenStackResponse request(OpenStackRequest<T> request) {
         OpenStackResponseException authException = null;
-        System.out.println("Openstack query:"+request.toString());
+        //System.out.println("Openstack query:"+request.toString());
         for (int i = 0; i <= AUTHENTICATION_RETRIES; i++) {
             request.endpoint(endpoint);