diff options
author | luxin <luxin7@huawei.com> | 2018-01-30 09:51:10 +0800 |
---|---|---|
committer | luxin <luxin7@huawei.com> | 2018-01-30 09:51:10 +0800 |
commit | f3d4d722c4fcfe84b8e88eca6dd02543bec013b6 (patch) | |
tree | 3eb7d408a841f3a9b2d91ddc3adc1c7003c09fae /ResmanagementService/service/src | |
parent | 40e0ece7610e4488140a61b6ff215e2e41856969 (diff) |
Remove printStackTrace of exception
Change-Id: Icc2749ba0d5de8875102b78846064326a3d6d281
Issue-ID: VFC-672
Signed-off-by: luxin <luxin7@huawei.com>
Diffstat (limited to 'ResmanagementService/service/src')
-rw-r--r-- | ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java index 1ae1ca4..e8fa42a 100644 --- a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java +++ b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java @@ -44,7 +44,6 @@ public class HttpsRest extends HttpBaseRest { client.start(); } catch(Exception e) { LOG.error("Exception", e); - e.printStackTrace(); } } @@ -169,7 +168,6 @@ public class HttpsRest extends HttpBaseRest { client.send(exchange); } catch(IOException e) { LOG.error("IOException", e); - e.printStackTrace(); } try { int exchangeState = exchange.waitForDone(); @@ -190,10 +188,8 @@ public class HttpsRest extends HttpBaseRest { } } catch(InterruptedException e) { LOG.error("InterruptedException", e); - e.printStackTrace(); } catch(UnsupportedEncodingException e) { LOG.error("UnsupportedEncodingException", e); - e.printStackTrace(); } return null; } @@ -213,7 +209,6 @@ public class HttpsRest extends HttpBaseRest { client.send(exchange); } catch(IOException e) { LOG.error("IOException", e); - e.printStackTrace(); } try { @@ -235,10 +230,8 @@ public class HttpsRest extends HttpBaseRest { } } catch(InterruptedException e) { LOG.error("InterruptedException", e); - e.printStackTrace(); } catch(UnsupportedEncodingException e) { LOG.error("UnsupportedEncodingException", e); - e.printStackTrace(); } return null; } @@ -266,7 +259,6 @@ public class HttpsRest extends HttpBaseRest { client.send(exchange); } catch(IOException e) { LOG.error("IOException", e); - e.printStackTrace(); } try { @@ -288,10 +280,8 @@ public class HttpsRest extends HttpBaseRest { } } catch(InterruptedException e) { LOG.error("InterruptedException", e); - e.printStackTrace(); } catch(UnsupportedEncodingException e) { LOG.error("InterruptedException", e); - e.printStackTrace(); } return null; } |