X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=appc-adapters%2Fappc-chef-adapter%2Fappc-chef-adapter-bundle%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Fadapter%2Fchef%2Fchefclient%2Fimpl%2FChefApiClientImpl.java;h=2857f9f762e3fda69dbc343d4baafd036dc93d92;hb=ba15e457fe152961756992a132926062fd8f877c;hp=f86b49033337018fe268ff08a704b3ba54b70f38;hpb=d40de4fb43f43d760c90abc40feb4d865b070b99;p=appc.git diff --git a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/ChefApiClientImpl.java b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/ChefApiClientImpl.java index f86b49033..2857f9f76 100644 --- a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/ChefApiClientImpl.java +++ b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/ChefApiClientImpl.java @@ -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()); } }