Wiki 9Minecraft Log Begone Wiki
Log Begone Wiki › Configuration

Log Begone — Configuration

Configuration

All settings live in config/logbegone.json. The file contains a single logbegone object with two arrays:

Key Match type Effect
phrases Substring - the log line contains the text Any log message containing one of these plain-text snippets is dropped
regex Regular expression - the log line fully matches the pattern Any log message that matches one of these Java regular expressions is dropped

Example structure:

{
  "logbegone": {
    "phrases": [
      "Disconnecting VANILLA connection attempt",
      "Channels "
    ],
    "regex": []
  }
}

Notes:

  • phrases entries are simple and safe: no escaping needed, a plain copy-paste of part of the offending line is enough.
  • regex entries must match the entire log line (Java String.matches semantics), so surround a fragment with .* - e.g. .*Unknown recipe category.* - to match lines containing it.
  • The file is read once at startup; edit it, then restart the game or server to apply changes.