Skip to content

Commit

Permalink
Remove command logging (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmayer-dev authored Aug 8, 2023
1 parent a8bf25e commit f5a5ddd
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/MacroBot.Core/Services/CommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ private async Task HandleInteraction (SocketInteraction arg)
// create an execution context that matches the generic type parameter of your InteractionModuleBase<T> modules
var ctx = new SocketInteractionContext(_client, arg);
await _commands.ExecuteCommandAsync(ctx, _services);
_logger.Information(
"{Interaction} executed by {User} -> {Data}",
ctx.Interaction.Type,
ctx.User.Username,
ctx.Interaction.Data);
}
catch (Exception ex)
{
Expand Down

0 comments on commit f5a5ddd

Please sign in to comment.