diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2017-10-04 00:10:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-04 00:10:47 +0000 |
commit | c605cefe85d172971f52a6f01b97eaa544cda549 (patch) | |
tree | 653e3162daafed8029ccdc9000ddf81cfd84516e | |
parent | a97cb51aa8ef13bac8134ffc3e488f9a04d3d752 (diff) | |
parent | bde3d49993c785bb37756cf7431a1d3af2b1aac4 (diff) |
Merge "Not logging or re-throwing the exceptions"
-rw-r--r-- | bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/workflow/serviceTask/SdncUnderlayVpnOperationClient.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/workflow/serviceTask/SdncUnderlayVpnOperationClient.java b/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/workflow/serviceTask/SdncUnderlayVpnOperationClient.java index 8832fe1a1c..8d2cb1ef7f 100644 --- a/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/workflow/serviceTask/SdncUnderlayVpnOperationClient.java +++ b/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/workflow/serviceTask/SdncUnderlayVpnOperationClient.java @@ -73,7 +73,7 @@ public class SdncUnderlayVpnOperationClient { try { networkRpcOutputEntiy = genericResourceApiClient.postNetworkTopologyOperation(body).execute().body(); } catch (Exception e) { - e.printStackTrace(); + logger.debug("Exception: ", e); updateProgress(RequestsDbConstant.Status.ERROR, null, null, "sendRestrequestAndHandleResponse exception:" + e.getMessage()); return false; } |