Multiple configurations
jLo supports more than one log configuration. In order to get a logger from a different configuration call the following method:
Logger logger = LogManager.getLogger("org.foo.app","FooApp");
If you are requesting another configuration rather the default then the LogManager will try to look for a file called {configname}_logging.xml.
In this example it will try to find a file called FooApp_logging.xml. Just make sure that a file following the simple naming convention is in your classpath.
That's all you need to do in order to use a different configuration.