style(commands/utils): adding tracing.info to help registration
Co-authored-by: Maix0 <maieul@familleboyer.net>
This commit is contained in:
parent
8648f707a3
commit
79f901939f
1 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ use serenity::{
|
|||
futures::StreamExt,
|
||||
};
|
||||
use sqlx::PgPool;
|
||||
use tracing::info;
|
||||
use crate::{
|
||||
commands::{
|
||||
CommandCategory,
|
||||
|
|
@ -91,7 +92,7 @@ impl SlashCommand for Help {
|
|||
}
|
||||
|
||||
fn register(&self) -> CreateCommand {
|
||||
println!("\t✅ | {}", self.name());
|
||||
info!("\t✅ | {}", self.name());
|
||||
CreateCommand::new(self.name())
|
||||
.description(self.description())
|
||||
.contexts(vec![
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue