diff --git a/Dalamud/Game/Command/CommandManager.cs b/Dalamud/Game/Command/CommandManager.cs index 2bb445adb..5f883a0d6 100644 --- a/Dalamud/Game/Command/CommandManager.cs +++ b/Dalamud/Game/Command/CommandManager.cs @@ -108,7 +108,7 @@ namespace Dalamud.Game.Command { this.commandMap.Add(command, info); return true; } catch (ArgumentException) { - Log.Warning("Command {CommandName} is already registered.", command); + Log.Error("Command {CommandName} is already registered.", command); return false; } }