Noisy logs hide signal behind the same few recurring lines. Exclude Pattern Filter strips any lines matching your blocklist — healthchecks, heartbeats, probes, debug chatter — so the meaningful entries stand out.
Plain words or regexes, case control, and a clear kept/removed tally make decluttering any paste a two-step job.
Each pattern box entry is its own rule and rules are combined with OR logic — a line is dropped the moment any single pattern matches it, so you do not need to write one giant regex to cover several kinds of noise. In substring mode every pattern is matched literally: no escaping, no special characters to worry about, and by default the comparison is case-insensitive so "ERROR" and "error" both hit a pattern of "error". Toggle the case-sensitive checkbox when you need an exact-case match, for example to exclude only the capitalized "DEBUG" tag and keep lowercase "debug" mentions inside a message body. Regex mode compiles every pattern line as its own RegExp, so you can combine word boundaries, alternation, and anchors — useful when a plain substring would also catch lines you want to keep. If any regex fails to compile, the tool reports which pattern was invalid instead of silently ignoring it.