Created
February 2, 2018 20:47
-
-
Save plenarius/334b4ad14185cfd14ba2bb7afa44873c to your computer and use it in GitHub Desktop.
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
diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml | |
index fc14cbd5..149dc6f4 100644 | |
--- a/src/main/resources/logback.xml | |
+++ b/src/main/resources/logback.xml | |
@@ -6,7 +6,7 @@ | |
<filter class="ch.qos.logback.classic.filter.LevelFilter"> | |
<level>INFO</level> | |
<onMatch>ACCEPT</onMatch> | |
- <onMismatch>DENY</onMismatch> | |
+ <onMismatch>ACCEPT</onMismatch> | |
</filter> | |
<target>System.out</target> | |
@@ -16,12 +16,11 @@ | |
</encoder> | |
</appender> | |
- <!-- | |
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
<filter class="ch.qos.logback.classic.filter.LevelFilter"> | |
<level>DEBUG</level> | |
<onMatch>ACCEPT</onMatch> | |
- <onMismatch>DENY</onMismatch> | |
+ <onMismatch>ACCEPT</onMismatch> | |
</filter> | |
<target>System.out</target> | |
@@ -30,7 +29,6 @@ | |
</pattern> | |
</encoder> | |
</appender> | |
- --> | |
<appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender"> | |
<filter class="ch.qos.logback.classic.filter.LevelFilter"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment