Replace printStackTrace with usage of logger
[so.git] / cloudify-client / src / main / java / org / openecomp / mso / cloudify / connector / http / HttpClientConnector.java
index 421f62a..17904ad 100644 (file)
@@ -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 {