Merge changes I38dad052,Ibc26d865
authorvarun gudisena <vg411h@att.com>
Wed, 7 Feb 2018 16:40:38 +0000 (16:40 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 7 Feb 2018 16:40:38 +0000 (16:40 +0000)
* changes:
  sonar critical for Exception Handling
  sonar critical for Exception Handling

src/main/java/com/att/nsa/dmaapMMAgent/MirrorMakerAgent.java

index cf395a8..0113f6d 100644 (file)
@@ -175,7 +175,7 @@ public class MirrorMakerAgent {
                                try {
                                        input.close();
                                } catch (IOException e) {
-                                       e.printStackTrace();
+                                       logger.error("Exception occurred is " +e);
                                }
                        }
                        if (out != null) {
@@ -213,6 +213,7 @@ public class MirrorMakerAgent {
                                        try {
                                                Thread.sleep(1000);
                                        } catch (InterruptedException e) {
+                                                Thread.currentThread().interrupt();
                                        }
                                        mirrorMakers.getListMirrorMaker().set(i, mm);
                                } else {
@@ -363,7 +364,7 @@ public class MirrorMakerAgent {
 
                        }
                } catch (Exception e) {
-                       e.printStackTrace();
+                       logger.error("Exception is : " +e);
                }
 
        }