fix: change already added command message to error

This commit is contained in:
goat 2020-01-13 23:16:43 +09:00
parent 8102ae6422
commit 4c74038a46

View file

@ -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;
}
}