From 3bd89c6902320ea3b5af17d63b4b1fedee794d77 Mon Sep 17 00:00:00 2001 From: Ben Woo <30431861+benwoo1110@users.noreply.github.com> Date: Sat, 12 Apr 2025 23:34:03 +0800 Subject: [PATCH] Make LogLevel enum public to allow overriding of log method in CommandManager (#433) --- core/src/main/java/co/aikar/commands/LogLevel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/co/aikar/commands/LogLevel.java b/core/src/main/java/co/aikar/commands/LogLevel.java index 3b111075..05f477fb 100644 --- a/core/src/main/java/co/aikar/commands/LogLevel.java +++ b/core/src/main/java/co/aikar/commands/LogLevel.java @@ -23,7 +23,7 @@ package co.aikar.commands; -enum LogLevel { +public enum LogLevel { INFO, ERROR;