aboutsummaryrefslogtreecommitdiff
path: root/log4j2.xml
diff options
context:
space:
mode:
authorhackthetime <l4bg0jb7@duck.com>2023-11-08 10:48:19 +0100
committerhackthetime <l4bg0jb7@duck.com>2023-11-08 10:48:19 +0100
commit02e5e5d3a94fcaee3097ef96504448ba81abc61f (patch)
tree3cf7cee824a5fb3155fe161bc5a3249ce0033fe7 /log4j2.xml
parentc41eb7f730e7586a69dce21691083f4637c0e595 (diff)
downloadBBsentials-02e5e5d3a94fcaee3097ef96504448ba81abc61f.tar.gz
BBsentials-02e5e5d3a94fcaee3097ef96504448ba81abc61f.tar.bz2
BBsentials-02e5e5d3a94fcaee3097ef96504448ba81abc61f.zip
fixed a recently added problem and crash.
IMPROVED LOG4J config to not spam the log output anymore at least while in IDE
Diffstat (limited to 'log4j2.xml')
-rw-r--r--log4j2.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/log4j2.xml b/log4j2.xml
index 294b37b..b68aae3 100644
--- a/log4j2.xml
+++ b/log4j2.xml
@@ -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>