From ea8da998b19fb7ef20bc1745c12f291a2fcdf930 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 16 Feb 2026 23:51:07 +0100 Subject: [PATCH] style(commands/utils): adding tracing.info to ping registration Co-authored-by: Maix0 --- src/commands/utils/ping.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/utils/ping.rs b/src/commands/utils/ping.rs index 1e6f639..1a5919e 100644 --- a/src/commands/utils/ping.rs +++ b/src/commands/utils/ping.rs @@ -17,6 +17,7 @@ use serenity::all::{ CreateInteractionResponseMessage, EditInteractionResponse, }; use sqlx::PgPool; +use tracing::info; pub struct Ping { pub command_id: AtomicU64, @@ -49,7 +50,7 @@ impl SlashCommand for Ping { } fn register(&self) -> CreateCommand { - println!("\t✅ | {}", self.name()); + info!("\t✅ | {}", self.name()); CreateCommand::new(self.name()).description(self.description()) }