Created
July 25, 2014 18:21
-
-
Save chronodm/050350c46adcff3078a4 to your computer and use it in GitHub Desktop.
Failed attempt to suppress log from Gradle tooling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"/> | |
<logger name="org.gradle.tooling" level="ERROR" additivity="false"> | |
<appender-ref ref="STDOUT"/> | |
</logger> | |
<root level="DEBUG"> | |
<appender-ref ref="STDOUT"/> | |
</root> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment