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