Skip to content

Commit

Permalink
Publish stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nes0x committed Aug 21, 2023
1 parent 163d926 commit 8445a77
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ public bool ValidateUniqueCommand(Command commandToCheck, List<Command> commands
commandToCheck.Parameters.Length == command.Parameters.Length &&
!commandToCheck.Parameters.Except(command.Parameters).Any())
{
_logger.LogError("You cannot have more commands with same name and parameters count with same types. Currently registered is {MethodInfoName}", command.MethodInfo.Name);
_logger.LogError(
"You cannot have more commands with same name and parameters count with same types. Currently registered is {MethodInfoName}",
command.MethodInfo.Name);
return false;
}

Expand Down

0 comments on commit 8445a77

Please sign in to comment.