
Console Filter
This useful modification allows you to hide unnecessary messages in the Minecraft console. You can configure filtering by specific text phrases or use regular expressions for a more flexible approach. The mod can be installed either on the client or on the server - it doesn't need to be installed on both sides simultaneously.
Filter Configuration
Here's an example of basic configuration that will hide all console messages containing the phrases "Can't keep up!" and "Player moved too quickly!":
# All console messages containing any of these strings will be hidden.
basicFilters = ["Can't keep up!", "Player moved too quickly!"]
The same result can be achieved using regular expressions:
# All console messages matching any of these regular expressions will be hidden. Uses Java regex syntax. Backslashes must be escaped, for example use \s instead of \s to match whitespace characters.
regexFilters = [".Can't keep up!.", ".Player moved too quickly!."]