diff --git a/ChaosBot/Discord/Services/CommandHandler.cs b/ChaosBot/Discord/Services/CommandHandler.cs index 1a97231..7da71bf 100644 --- a/ChaosBot/Discord/Services/CommandHandler.cs +++ b/ChaosBot/Discord/Services/CommandHandler.cs @@ -85,7 +85,8 @@ namespace ChaosBot.Discord.Services return; } - await context.Channel.SendMessageAsync($"Sorry, {context.User.Username}... something went wrong -> [{result}]!"); + _logger.Warn($"{context.User.Username} attempted to access {command.Value.Name} and was denied -> [{result}]"); + await context.Channel.SendMessageAsync($"Sorry, {context.User.Username}, that command won't work for you.!"); } catch (Exception ex) {