-
Notifications
You must be signed in to change notification settings - Fork 0
/
log4j2.xml
20 lines (18 loc) · 842 Bytes
/
log4j2.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<Configuration strict="true" status="info" xmlns="http://logging.apache.org/log4j/2.0/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://logging.apache.org/log4j/2.0/config
https://raw.githubusercontent.com/apache/logging-log4j2/master/log4j-core/src/main/resources/Log4j-config.xsd">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="|| %location | %msg\r\n" />
</Console>
</Appenders>
<Loggers>
<!-- Only our code shows ALL log messages, the others show INFO. -->
<Logger name="org.aqa" level="ALL"/>
<Logger name="org.umro" level="ALL"/>
<Root level="INFO">
<AppenderRef ref="Console" />
</Root>
</Loggers>
</Configuration>