diff options
Diffstat (limited to 'log4j2.xml')
-rw-r--r-- | log4j2.xml | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <Configuration status="WARN"> <!-- Filter out Hypixel scoreboard and sound errors --> - <RegexFilter regex="Error executing task.*|Unable to play unknown soundEvent.*" onMatch="DENY" + <RegexFilter + regex="Unable to play unknown soundEvent:.* |Signature is missing from Property textures|Received packet for unknown team .*|Ignoring player info update for unknown player .*|Requested creation of existing .*" + onMatch="DENY" onMismatch="NEUTRAL"/> -</Configuration>
\ No newline at end of file + <!-- Filter out other errors --> + <RegexFilter regex="Error executing task.*" onMatch="DENY" onMismatch="NEUTRAL"/> +</Configuration> |