1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2026-01-06 15:41:50 +00:00

Feature: Resource Pack API additions - ResourcePackOptions and a GeyserDefineResourcePacksEvent (#4978)

This commit is contained in:
chris
2025-03-25 15:49:18 +01:00
committed by GitHub
parent 512c68a883
commit 69329f2cad
45 changed files with 2213 additions and 138 deletions

View File

@@ -115,6 +115,11 @@ public class GeyserStandaloneLogger extends SimpleTerminalConsole implements Gey
log.debug(ChatColor.GRAY + message);
}
@Override
public void debug(String message, Object... arguments) {
log.debug(ChatColor.GRAY + message, arguments);
}
@Override
public void setDebug(boolean debug) {
Configurator.setLevel(log.getName(), debug ? Level.DEBUG : Level.INFO);