Hi All, I was wondering if there was a magical way to enable the Slf4j loggers for unit tests without adding a logback-test.xml file into src/test/resources for a submodule in the project? If not, would there by any issues with adding a default logback-test.xml file that has logging disabled by default to each submodule's src/test/resources directory? I'd like to do this in order to discourage the use of System.out.println in tests (and eventually prohibit it completely) by providing an easy to use out of the box alternative. Currently our test logs are polluted by many System.out.print statements and switching to using logging will allow us to have our test messages when we want them, and to disable them when we don't want them.
Thanks, Tim
