Last active
August 29, 2015 14:16
-
-
Save cescoffier/dfb6ecac2268872a9411 to your computer and use it in GitHub Desktop.
Wisdom - Example of logger configuration generating two files
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
<!-- | |
#%L | |
Wisdom-Framework | |
%% | |
Copyright (C) 2013 - 2014 Wisdom Framework | |
%% | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. | |
#L% | |
--> | |
<configuration> | |
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
<!-- On Windows machines setting withJansi to true enables ANSI | |
color code interpretation by the Jansi library. This requires | |
org.fusesource.jansi:jansi:1.8 on the class path. Note that | |
Unix-based operating systems such as Linux and Mac OS X | |
support ANSI color codes by default. --> | |
<withJansi>true</withJansi> | |
<encoder> | |
<pattern>%highlight([%level]\t %logger{15}) %cyan({%thread}) - %msg %n</pattern> | |
<!-- If you don't want colors, you can use the following line, and comment the previous --> | |
<!--<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>--> | |
</encoder> | |
</appender> | |
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> | |
<file>logs/wisdom.log</file> | |
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | |
<!-- daily rollover --> | |
<fileNamePattern>logs/wisdom.%d{yyyy-MM-dd}.log</fileNamePattern> | |
<!-- keep 1 days' worth of history --> | |
<maxHistory>5</maxHistory> | |
</rollingPolicy> | |
<encoder> | |
<pattern>%d{HH:mm:ss.SSS} %-4relative [%thread] %-5level %logger{35} - %msg%n</pattern> | |
</encoder> | |
</appender> | |
<appender name="ERROR" class="ch.qos.logback.core.rolling.RollingFileAppender"> | |
<file>logs/error.log</file> | |
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | |
<!-- daily rollover --> | |
<fileNamePattern>logs/wisdom.%d{yyyy-MM-dd}.log</fileNamePattern> | |
<!-- keep 1 days' worth of history --> | |
<maxHistory>5</maxHistory> | |
</rollingPolicy> | |
<filter class="ch.qos.logback.classic.filter.LevelFilter"> | |
<level>ERROR</level> | |
<onMatch>ACCEPT</onMatch> | |
<onMismatch>DENY</onMismatch> | |
</filter> | |
<encoder> | |
<pattern> | |
%-4relative [%thread] %-5level %logger{30} - %msg%n | |
</pattern> | |
</encoder> | |
</appender> | |
<appender name="ASYNC" class="ch.qos.logback.classic.AsyncAppender"> | |
<appender-ref ref="FILE" /> | |
</appender> | |
<root level="info" additivity="false"> | |
<appender-ref ref="STDOUT"/> | |
<!-- If you prefer using the FILE appender directly, replace "ASYNC" by "FILE" --> | |
<appender-ref ref="ASYNC"/> | |
<!-- Specific error appender --> | |
<appender-ref ref="ERROR"/> | |
</root> | |
<!-- Logger configuration --> | |
<logger name="ch.qos.logback" level="WARN"/> | |
<logger name="net.sf.ehcache" level="WARN"/> | |
<logger name="org.apache" level="WARN"/> | |
<logger name="org.hibernate.validator" level="WARN"/> | |
<logger name="org.thymeleaf" level="WARN"/> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment