From d0bedf904cfab7035c08d499575d7b878de2f018 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 16 Mar 2026 14:03:15 +0100 Subject: [PATCH] feat(command/moderation): adding the debug print to clear --- src/commands/moderation/clear.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/moderation/clear.rs b/src/commands/moderation/clear.rs index 1fadbfd..b9ce744 100644 --- a/src/commands/moderation/clear.rs +++ b/src/commands/moderation/clear.rs @@ -50,7 +50,7 @@ impl SlashCommand for Clear { _database: &PgPool, _emoji: &EmojiConfig, ) -> Result<()> { - debug!("Clear command called"); + debug!("{} command called", self.name()); let amount: u8 = command.data.options.iter().find(|opt | opt.kind() == CommandOptionType::Integer) .unwrap().value.as_i64().expect("REASON") as u8; let message: CreateInteractionResponseMessage = CreateInteractionResponseMessage::new()