I built an app and build it with the gradle.
But I can't understand how to test in gradle in debug mode.
I enter:
gradle test -d > test.log
but I get only debug messages about building, not messages log.debug() from test.
log.info() messages I can see in builded test result's "Standart error" tab. But how can I see [DEBUG] messages?
It's simple java application. – wazz Mar 18 '15 at 13:27
in code: `private static final Logger log = LoggerFactory.getLogger(SearchEngineService.class);` `public void testSomething() {` `log.debug("hello");`– wazz Mar 18 '15 at 14:10