I am using SLF4J in my application which is deployed on websphere liberty profile. I want to configure it so that 1- logging configuration (such as log4j properties if I use log4j with slf4j) resides outside the application war file, 2 - The logging configuration applies only to my application and not to other applications deployed on the same profile.
(1) can be achieved by using slf4j with java.util.logging since websphere liberty is integrated with that, however the logging configuration applies to the entire profile
However, what would be the best way to get both (1) and (2) ?