in src/main/java/com/amazonaws/fixengineonaws/FixEngineConfig.java [345:365]
private SessionSettings initializeParameters(String configfile) throws ConfigError {
LOGGER.info("FIXENGINECONFIG ****INITIALIZE PARAMETERS starting");
try {
sessionSettings = new SessionSettings(configfile);
} catch (ConfigError e) {
LOGGER.info("FIXENGINECONFIG INITIALIZE PARAMETERS: Unable to create new SessionSettings from config file " + configfile);
e.printStackTrace();
throw e;
}
LOGGER.setLevel(Level.FINE);
overrideConfigFromSsmParameters();
if ("<DebugLogging>".equals(getSessionSetting("DebugLogging"))) {
sessionSettings.setString("DebugLogging","false");
}
LOGGER.info("FIXENGINECONFIG INITIALIZE PARAMETERS finished overriding params and got: " + sessionSettings);
// checkConfigHealthy(configfile);
return sessionSettings;
}