From 29cfc7a4ad50dd8b24bd7ce9a051e456cd0279a2 Mon Sep 17 00:00:00 2001 From: ajay priyadarshi Date: Mon, 19 Feb 2018 10:43:38 +0530 Subject: [PATCH] Exception handling emsdriver/commons/utils/DriverThread.java file name: DriverThread.java Change-Id: Iec2747e48c75b4c03b17449b163c19771d158b52 Issue-ID: VFC-766 Signed-off-by: ajay priyadarshi --- .../java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java b/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java index cbdbd3c..1b59022 100644 --- a/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java +++ b/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/utils/DriverThread.java @@ -52,7 +52,8 @@ public abstract class DriverThread implements Runnable { try { dispose(); } catch (Exception e) { - e.printStackTrace(); + //e.printStackTrace(); + log.error(" printStackTrace :", e); } this.setEnd(true); -- 2.16.6