diff options
author | hackthetime <l4bg0jb7@duck.com> | 2023-11-08 10:48:19 +0100 |
---|---|---|
committer | hackthetime <l4bg0jb7@duck.com> | 2023-11-08 10:48:19 +0100 |
commit | 02e5e5d3a94fcaee3097ef96504448ba81abc61f (patch) | |
tree | 3cf7cee824a5fb3155fe161bc5a3249ce0033fe7 /log4j2.xml | |
parent | c41eb7f730e7586a69dce21691083f4637c0e595 (diff) | |
download | BBsentials-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.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> |