Added logger 51/81851/4
authorJegadeesh Babu <jegabab1@in.ibm.com>
Fri, 8 Mar 2019 12:36:15 +0000 (18:06 +0530)
committerTakamune Cho <takamune.cho@att.com>
Tue, 12 Mar 2019 15:27:36 +0000 (15:27 +0000)
Sonar fix

Issue-ID: APPC-1527
Change-Id: Ic2708d67b6f2740ddabe834e56b09c11389b8894
Signed-off-by: Jegadeesh Babu <jegabab1@in.ibm.com>
appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/ChefApiClientImpl.java

index f86b490..2857f9f 100644 (file)
@@ -6,6 +6,8 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ * Modifications Copyright (C) 2019 IBM
+ * =============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -99,8 +101,10 @@ public class ChefApiClientImpl implements ChefApiClient {
             String responseBody = EntityUtils.toString(httpEntity);
             return ChefResponse.create(statusCode, responseBody);
         } catch (IOException ex) {
+            logger.error("Error occured while reading response", ex.getMessage(), ex);
             return ChefResponse.create(HttpStatus.SC_INTERNAL_SERVER_ERROR, ex.getMessage());
         } catch (URISyntaxException ex) {
+            logger.error("Malformed URL", ex.getMessage(), ex);
             return ChefResponse.create(HttpStatus.SC_INTERNAL_SERVER_ERROR, ex.getMessage());
         }
     }