style(commands/utils): adding tracing.info to ping registration

Co-authored-by: Maix0 <maieul@familleboyer.net>
This commit is contained in:
Raphael 2026-02-16 23:51:07 +01:00 committed by Raphaël
parent 79f901939f
commit ea8da998b1

View file

@ -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())
}