15 lines
585 B
TOML
15 lines
585 B
TOML
|
# The configuration file for Log Begone
|
||
|
|
||
|
[logbegone]
|
||
|
# If a log message has one of these phrases, it will be filtered out from logging
|
||
|
phrases = [
|
||
|
"the_aether",
|
||
|
]
|
||
|
|
||
|
# If a log message matches one of these regex patterns, it will be filtered out from logging. EX:
|
||
|
# regex this
|
||
|
# Failed to parse recipe 'create:cutting/compat/byg/mangrove_log[create:cutting]'! Falling back to vanilla: com.google.gson.JsonSyntaxException: Unknown item 'byg:mangrove_log'
|
||
|
regex = [
|
||
|
"Incorrect key .* was corrected from .* to its default, .*",
|
||
|
"Failed to parse recipe .*! Falling back to vanilla: .*"
|
||
|
]
|