I have an application with a lot of logging (using SLF4J and Logback), and I am running a test that is failing to see what the debug logs tell me. Unfortunately, when I run my test as follows
clean test -S -Dtest.single=MyTest I don't see any of the application log messages. I do see them when I run my tests via Maven's Surefire plugin. Note that I am not interested in seeing Gradle's logging for now but simply the log messages from my own code. I am sure that there is something silly in my configuration, but any insight is appreciated. Thanks.
