How to configure log levels in Gradle?
This isn't something that's currently supported. There might be a hack to achieve it, but I'm not aware of one. The easy (if somewhat limited) solution is to filter the output after-the-fact, e.g. with a grep
or by using a log viewer.
Add this line to gradle.properties
org.gradle.logging.level=info
will have the same effect as gradle --info