diff options
author | Lukasz Muszkieta <lukasz.muszkieta@nokia.com> | 2019-10-14 16:00:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-10-14 16:00:07 +0000 |
commit | 5f898d39ba86fe34f01cfb0342ab68c967ad77e4 (patch) | |
tree | 6dbd2827b2262e44e5f37701779fa1c456aa7958 /asdc-controller/src/main | |
parent | ac035d57c099f12aed66b9baeab7035934fc1f47 (diff) | |
parent | 30363728f6bf12fb0601db061952dccf8f41a751 (diff) |
Merge "General sonar fixes"
Diffstat (limited to 'asdc-controller/src/main')
-rw-r--r-- | asdc-controller/src/main/java/org/onap/so/asdc/activity/DeployActivitySpecs.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asdc-controller/src/main/java/org/onap/so/asdc/activity/DeployActivitySpecs.java b/asdc-controller/src/main/java/org/onap/so/asdc/activity/DeployActivitySpecs.java index d60c377730..1fda277b6e 100644 --- a/asdc-controller/src/main/java/org/onap/so/asdc/activity/DeployActivitySpecs.java +++ b/asdc-controller/src/main/java/org/onap/so/asdc/activity/DeployActivitySpecs.java @@ -155,7 +155,7 @@ public class DeployActivitySpecs { connection.setConnectTimeout(5000); responseCode = connection.getResponseCode(); } catch (Exception e) { - logger.warn("Exception on connecting to SDC WFD endpoint: " + e.getMessage()); + logger.warn("Exception on connecting to SDC WFD endpoint: ", e); } if (responseCode == HttpStatus.SC_OK || responseCode == HttpStatus.SC_NOT_FOUND) { isUp = true; |