commit | 5ff7437478a7f9a8b804fa58684c181680d85fb0 | [log] [tgz] |
---|---|---|
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | Tue Sep 18 07:25:20 2018 +0000 |
committer | Gerrit Code Review <gerrit@onap.org> | Tue Sep 18 07:25:20 2018 +0000 |
tree | b03cdfa3e9d3ae03065596211c46996da43c4515 | |
parent | aefc4022be976a64b2dca05316c05a91a102bbfd [diff] | |
parent | f25c614cb273c65433f55e1c99e9dd7c039ea424 [diff] |
Merge "Added log in case of exception in servicepluginfac"
diff --git a/bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/workflow/service/ServicePluginFactory.java b/bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/workflow/service/ServicePluginFactory.java index a6bdb59..6346309 100644 --- a/bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/workflow/service/ServicePluginFactory.java +++ b/bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/workflow/service/ServicePluginFactory.java
@@ -550,7 +550,6 @@ jsonStr = mapper.writeValueAsString(srcObj); } catch (JsonProcessingException e) { LOGGER.debug("SdcToscaParserException", e); - e.printStackTrace(); } return jsonStr; } @@ -603,9 +602,9 @@ try { responseContent = EntityUtils.toString(httpResponse.getEntity(), "UTF-8"); } catch (ParseException e) { - e.printStackTrace(); + LOGGER.debug("ParseException in sendrequest", e); } catch (IOException e) { - e.printStackTrace(); + LOGGER.debug("IOException in sendrequest", e); } } if (null != method) {