-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog4j2.xml
More file actions
29 lines (28 loc) · 1.03 KB
/
Copy pathlog4j2.xml
File metadata and controls
29 lines (28 loc) · 1.03 KB
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
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="INFO">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<!-- Linux console safe -->
<!-- <PatternLayout pattern="%highlight{%-5p [%t]:} %m%n" /> -->
<!-- Eclipse Safe -->
<PatternLayout pattern="%d{HH:mm:ss.SSS} %-5p [%t]: %m%n" />
</Console>
<File name="MyFile" fileName="${sys:log.path}/TemplateParser.log" immediateFlush="true" append="true">
<PatternLayout pattern="%d{HH:mm:ss.SSS} %-5p [%t]: %m%n"/>
</File>
</Appenders>
<Loggers>
<!-- <Root level="all"> -->
<!-- <Root level="info"> -->
<!-- <Root level="debug"> -->
<!-- <Root level="warn"> -->
<!-- <Root level="error"> -->
<!-- <Root level="fatal"> -->
<!-- <Root level="trace"> -->
<!-- <Root level="off"> -->
<Root level="${sys:log.level}">
<AppenderRef ref="Console" />
<AppenderRef ref="MyFile"/>
</Root>
</Loggers>
</Configuration>