prop.put(LoggerFactory.JAVALOG_CONFIGURATION_CLASS, configParam);
}
System.out.println("Test the configurability with in " + configMode
+ " mode");
LoggerFactory mlf = new LoggerFactory();
try {
mlf.configure(prop);
}
catch (Exception e) {
System.out.println("Impossible to configure in " + configMode
+ "mode");
e.printStackTrace();
System.exit(12);
}
Logger l = mlf.getLogger("org.objectweb.monolog.javalog.test.toto");
l.log(BasicLevel.INFO, "test PASSED");
}