forked from hvandenb/SplunkModularInputsJavaFramework
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlog4j.xml
More file actions
27 lines (19 loc) · 632 Bytes
/
log4j.xml
File metadata and controls
27 lines (19 loc) · 632 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
26
27
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"
debug="false" >
<appender
name="STDOUT"
class="org.apache.log4j.ConsoleAppender" >
<param name="target" value="System.err"/>
<layout class="org.apache.log4j.PatternLayout" >
<param
name="ConversionPattern"
value="%5p %m%n" />
</layout>
</appender>
<root>
<level value="ERROR" />
<appender-ref ref="STDOUT" />
</root>
</log4j:configuration>