-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathlog4j2.xml
More file actions
16 lines (16 loc) · 752 Bytes
/
log4j2.xml
File metadata and controls
16 lines (16 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<!-- Filter out Hypixel scoreboard and sound errors -->
<RegexFilter regex="Unable to play unknown soundEvent.*" onMatch="DENY" onMismatch="NEUTRAL"/>
<Loggers>
<Logger level="INFO" name="net.minecraft.util.MessageDeserializer" additivity="false">
<AppenderRef ref="SysOut" level="DEBUG" />
<Filters>
<RegexFilter regex=".*S18PacketEntityTeleport.*" onMatch="ACCEPT" onMismatch="DENY"/>
</Filters>
</Logger>
<Logger level="DEBUG" name="ca.tirelesstraveler.fancywarpmenu" additivity="false">
<AppenderRef ref="SysOut" level="DEBUG" />
</Logger>
</Loggers>
</Configuration>