-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog4j2.xml
26 lines (25 loc) · 1.17 KB
/
log4j2.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
25
26
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="warn">
<Properties>
<Property name="sponge.exceptionFormat">StyleMapName=Spock Name=reset,red NameMessageSeparator=red Message=red StackTraceElement.ClassName=red StackTraceElement.ClassMethodSeparator=red,faint StackTraceElement.MethodName=yellow StackTraceElement.NativeMethod=yellow</Property>
<Property name="sponge.exceptionFiltered">jdk.internal,sun.reflect</Property>
</Properties>
<Appenders>
<Console name="SysOut" target="SYSTEM_OUT">
<PatternLayout pattern="%d{ISO8601} %level [%t] [%c{1.3}]: %msg{nolookups}%n"/>
</Console>
</Appenders>
<Loggers>
<!-- Log Vanilla loggers at INFO to suppress some debug messages -->
<Logger name="net.minecraft" level="INFO"/>
<Logger name="com.mojang" level="INFO"/>
<Root level="DEBUG">
<AppenderRef ref="SysOut" level="INFO"/>
</Root>
</Loggers>
<filters>
<MarkerFilter marker="LAUNCHPLUGIN" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="PACKET_SENT" onMatch="DENY" onMismatch="NEUTRAL"/>
<MarkerFilter marker="PACKET_RECEIVED" onMatch="DENY" onMismatch="NEUTRAL"/>
</filters>
</Configuration>