forked from Realhedin/topjava02
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogback-test.xml
More file actions
25 lines (20 loc) · 858 Bytes
/
logback-test.xml
File metadata and controls
25 lines (20 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<configuration>
<contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator">
<resetJUL>true</resetJUL>
</contextListener>
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<charset>UTF-8</charset>
<pattern>%-5level %logger{0} - %msg%n</pattern>
</encoder>
</appender>
<!--<logger name="org.hibernate.cache.ehcache" level="debug"/>-->
<!--<logger name="org.springframework.context" level="debug"/>-->
<!--<logger name="org.springframework.web" level="debug"/>-->
<!--<logger name="org.springframework.jdbc" level="debug"/>-->
<logger name="ru.javawebinar.topjava" level="debug"/>
<!--<logger name="org.hibernate" level="debug"/>-->
<root level="WARN">
<appender-ref ref="console"/>
</root>
</configuration>