-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog4j.xml
24 lines (24 loc) · 897 Bytes
/
log4j.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<Filters>
<ThresholdFilter level="warn" onMatch="accept" onMismatch="neutral"/>
<ThresholdFilter level="info" onMatch="accept" onMismatch="neutral"/>
</Filters>
<PatternLayout pattern="%d{HH:mm:ss} [%t] %-4p %c{4.} - %msg%n"/>
</Console>
<File name="File" fileName="errors.txt">
<ThresholdFilter level="error" onMatch="accept" onMismatch="deny"/>
<PatternLayout>
<pattern>%d %p %C{1.} [%t] %m%n</pattern>
</PatternLayout>
</File>
</Appenders>
<Loggers>
<Root level="info">
<AppenderRef ref="Console"/>
<AppenderRef ref="File"/>
</Root>
</Loggers>
</Configuration>