Merge "sonar critical for Exception handling"
authorvarun gudisena <vg411h@att.com>
Tue, 6 Feb 2018 14:25:32 +0000 (14:25 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 6 Feb 2018 14:25:32 +0000 (14:25 +0000)
1  2 
src/main/java/com/att/nsa/dmaapMMAgent/MirrorMakerAgent.java

@@@ -152,6 -152,7 +152,7 @@@ public class MirrorMakerAgent 
                        }
                        input = new FileInputStream(mmagenthome + "/etc/" + agentName + propName + ".properties");
                } catch (IOException ex) {
+                       logger.error(" IOException will be handled " + ex);
                        try {
                                input = new FileInputStream(mmagenthome + "/etc/" + propName + ".properties");
                                Properties prop = new Properties();
                                prop.store(out, "");
  
                        } catch (Exception e) {
 -                              e.printStackTrace();
 +                              logger.error("Exception at checkPropertiesFile " +e);
                        }
                } finally {
                        if (input != null) {