I have a problem with test console output in IntelliJ 2016. When I run JUnit tests via IntelliJ, the console window is flooded with enormous amounts of log lines, for example
DEBUG reactor.ipc ....
DEBUG io.netty.buffer.ByteBufUtil ....
It's a simple Spring-Boot application which uses the default logging - I think it's slf4j. I tried setting
logging.level.reactor.ipc=WARN
in my src/main/resources/application.properties
and also setting
-Dlogging.level.root=WARN
on the RunConfig's VM arguments, but neither has any effect on the log output.
What is the correct place to configure logging verbosity when executing Tests from Intellij?