diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-07-25 12:53:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-07-25 12:53:36 +0000 |
commit | fc02356e16ab2483334bb5ee29018c4bffa23564 (patch) | |
tree | 66106afa8c1f9a7b95457368ed52e7f8be7f3f46 /cloudify-client | |
parent | 37c292773bd1906cf9e59e62a0c7e8027ed1e4bf (diff) | |
parent | 7fcc895e05176b786cd6dcfaf8aba8190c53e1e7 (diff) |
Merge "Replace printStackTrace with usage of logger"
Diffstat (limited to 'cloudify-client')
-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 { |