Back to mods
Ember's Log Filtering project artwork

CurseForge · Minecraft mod

Ember's Log Filtering

Allows you to filter anything from logs

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Ember's Log Filtering release should I use?

Updated 3 days ago
Latest stable file LogFilter 1.1.2 (NeoForge 1.21.1)
Game version 1.21.1
Loader NeoForge

Ember's Log Filtering LogFilter 1.1.2 (NeoForge 1.21.1) targets 1.21.1 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is Ember's Log Filtering required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release NeoForge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Ember's Log Filtering LogFilter 1.1.2 (NeoForge 1.21.1) need?

LogFilter 1.1.2 (NeoForge 1.21.1). Change the file and its required mods may change too.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add Ember's Log Filtering without breaking your instance.

Built for Ember's Log Filtering LogFilter 1.1.2 (NeoForge 1.21.1). Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use LogFilter 1.1.2 (NeoForge 1.21.1). It targets 1.21.1 with NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside LogFilter 1.1.2 (NeoForge 1.21.1). It opens that exact file at the source.

About this project

What does Ember's Log Filtering add?

LogFilter

A highly configurable log filtering mod for Minecraft. Suppress noisy log messages, highlight important ones, and keep your console clean, all with hot-reloadable rules.

Wiki: https://tysontheember.dev/log-filter/intro/

Features

  • Regex message filtering: Match and suppress log messages by content using regular expressions
  • Logger name filtering: Filter by exact logger name or regex pattern, with hierarchical matching
  • Log level filtering: Target specific log levels (DEBUG, INFO, WARN, ERROR)
  • Filter actions: DENY (suppress), ALLOW (force show), or NEUTRAL (pass through) per rule
  • Per-rule enable/disable: Toggle individual rules without removing them
  • Hot-reload: Edit logfilter.json and changes apply instantly, no restart needed
  • Default rules included: Ships with pre-made (disabled) rules for common log spam

Configuration

LogFilter stores its config in logfilter.json in your Minecraft config directory. The file is created automatically on first launch with sensible defaults.

Example Config

{
  "configVersion": 1,
  "enabled": true,
  "rules": [
    {
      "name": "Suppress OpenAL spam",
      "enabled": true,
      "type": "MESSAGE_REGEX",
      "pattern": "(?i)openal",
      "action": "DENY",
      "level": null
    },
    {
      "name": "Block debug logs from server level",
      "enabled": true,
      "type": "LOGGER_NAME",
      "pattern": "net.minecraft.server.level",
      "action": "DENY",
      "level": "DEBUG"
    },
    {
      "name": "Always show errors",
      "enabled": true,
      "type": "LEVEL",
      "pattern": "ERROR",
      "action": "ALLOW",
      "level": null
    }
  ]
}

Rule Types

Type Description
MESSAGE_REGEX Match the log message content against a regex pattern
LOGGER_NAME Match by exact logger name or prefix (hierarchical)
LOGGER_REGEX Match logger names using a regex pattern
LEVEL Match by log level (DEBUG, INFO, WARN, ERROR)

Actions

Action Description
DENY Suppress the log message
ALLOW Force the message through, regardless of other rules
NEUTRAL No effect, pass through to the next rule

Optional Level Restriction

Any rule can include a level field to restrict it to a specific log level. For example, a LOGGER_NAME rule with "level": "DEBUG" will only match debug messages from that logger.

Default Rules

LogFilter ships with several pre-configured rules (disabled by default) to get you started:

  • Suppress OpenAL/LWJGL info spam
  • Suppress advancement loading messages
  • Suppress debug logs from net.minecraft.server.level
  • Suppress recipe loading messages
  • Always allow ERROR-level messages

Enable them by setting "enabled": true in the config file.

Project description from CurseForge.

Pick your setup

Ember's Log Filtering by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

4 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Ember's Log Filtering versions and loaders

16 of 16 releases match

Looking for an older file? The official CurseForge project page is in Resources.