diff --git a/src/main.rs b/src/main.rs index af75b53..96eb03d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -222,6 +222,8 @@ async fn my_help( groups: &[&'static CommandGroup], owners: HashSet, ) -> CommandResult { + let author_name = format!("{}#{}", msg.author.name, msg.author.discriminator); + info!("{} asked for help", author_name); let _ = help_commands::with_embeds(context, msg, args, help_options, groups, owners).await; Ok(()) }