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

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

View file

@ -6,6 +6,7 @@ use serenity::{
futures::StreamExt, futures::StreamExt,
}; };
use sqlx::PgPool; use sqlx::PgPool;
use tracing::info;
use crate::{ use crate::{
commands::{ commands::{
CommandCategory, CommandCategory,
@ -91,7 +92,7 @@ impl SlashCommand for Help {
} }
fn register(&self) -> CreateCommand { fn register(&self) -> CreateCommand {
println!("\t✅ | {}", self.name()); info!("\t✅ | {}", self.name());
CreateCommand::new(self.name()) CreateCommand::new(self.name())
.description(self.description()) .description(self.description())
.contexts(vec![ .contexts(vec![