Committed by
Jean-Francois Leveque
add very basic logback configuration
Showing
1 changed file
with
15 additions
and
0 deletions
src/main/resources/logback.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<configuration> | ||
3 | + | ||
4 | + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
5 | + <layout class="ch.qos.logback.classic.PatternLayout"> | ||
6 | + <Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</Pattern> | ||
7 | + </layout> | ||
8 | + </appender> | ||
9 | + | ||
10 | + <logger name="org.legrog" level="DEBUG"/> | ||
11 | + | ||
12 | + <root level="warn"> | ||
13 | + <appender-ref ref="STDOUT" /> | ||
14 | + </root> | ||
15 | +</configuration> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment