Removed sysout and replaced with logger
Issue-ID: AAI-2085
Change-Id: I0f90b137d3d46ae80a4de2492cf335cd5016a521
Signed-off-by: Chandan Ghosh <cghosh12@in.ibm.com>
                        AAIConfig.init();
                } catch (Exception ex) {
                        LOGGER.error(" ERROR - Could not run AAIConfig.init(). " + LogFormatTools.getStackTop(ex));
-                       System.out.println(" ERROR - Could not run AAIConfig.init(). ");
+                       //System.out.println(" ERROR - Could not run AAIConfig.init(). ");
                        System.exit(1);
                }
 
                try {
                        edges = edgeIngestor.getAllCurrentRules();
                } catch (EdgeRuleNotFoundException e) {
-                       e.printStackTrace();
                        LOGGER.error("Unable to find all rules {}", LogFormatTools.getStackTop(e));
                }
 
                String imsg = "-- About to call graphMgmt commit";
                LOGGER.info(imsg);
                if(backend != null){
-                       System.out.println("Successfully loaded the schema to " + backend);
+                       LOGGER.info("Successfully loaded the schema to " + backend);
                }
 
                graphMgmt.commit();