diff options
author | Michal Korman <michal.korman@nokia.com> | 2018-05-24 12:47:40 +0200 |
---|---|---|
committer | mkorman <michal.korman@nokia.com> | 2018-05-24 12:47:40 +0200 |
commit | 7fcc895e05176b786cd6dcfaf8aba8190c53e1e7 (patch) | |
tree | 46145bdfb26107db6659aab799af36e8a48e04df /cloudify-client/src | |
parent | 3ad1f7e9fd56d2d0eb9f0bde46b5b48cea9ed97a (diff) |
Replace printStackTrace with usage of logger
Change-Id: I648e5a25337beca1f8c483ba6e5359d245e237d3
Issue-ID: SO-642
Signed-off-by: mkorman <michal.korman@nokia.com>
Diffstat (limited to 'cloudify-client/src')
-rw-r--r-- | cloudify-client/src/main/java/org/openecomp/mso/cloudify/connector/http/HttpClientConnector.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudify-client/src/main/java/org/openecomp/mso/cloudify/connector/http/HttpClientConnector.java b/cloudify-client/src/main/java/org/openecomp/mso/cloudify/connector/http/HttpClientConnector.java index 421f62a437..17904adf7b 100644 --- a/cloudify-client/src/main/java/org/openecomp/mso/cloudify/connector/http/HttpClientConnector.java +++ b/cloudify-client/src/main/java/org/openecomp/mso/cloudify/connector/http/HttpClientConnector.java @@ -223,7 +223,7 @@ public class HttpClientConnector implements CloudifyClientConnector { } catch (Exception e) { // Catchall for anything else, must throw as a RuntimeException - e.printStackTrace(); + LOGGER.error("Client exception", e); throw new RuntimeException("Unexpected client exception", e); } finally { |