Skip to content

Instantly share code, notes, and snippets.

@plenarius
Created February 2, 2018 20:47
Show Gist options
  • Save plenarius/334b4ad14185cfd14ba2bb7afa44873c to your computer and use it in GitHub Desktop.
Save plenarius/334b4ad14185cfd14ba2bb7afa44873c to your computer and use it in GitHub Desktop.
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