feat(command/gestion): adding the debug print to set
This commit is contained in:
parent
d0bedf904c
commit
e388ddfc8c
1 changed files with 8 additions and 8 deletions
|
|
@ -20,7 +20,7 @@ async fn set_picture(slashcmd: &Set, ctx: &Context, cmd: &CommandInteraction, db
|
|||
_ => return Err(anyhow::anyhow!("Expected a subcommand")),
|
||||
};
|
||||
|
||||
let url = inner_options
|
||||
let url: &str = inner_options
|
||||
.iter()
|
||||
.find(|opt| opt.name == "link")
|
||||
.ok_or_else(|| anyhow::anyhow!("Option 'link' not found"))?
|
||||
|
|
@ -85,7 +85,7 @@ impl SlashCommand for Set {
|
|||
_database: &PgPool,
|
||||
_emoji: &EmojiConfig,
|
||||
) -> Result<()> {
|
||||
debug!("Set command called");
|
||||
debug!("{} command called", self.name());
|
||||
if !is_owner(_database, &command.user.id.to_string()).await? {
|
||||
let message: CreateInteractionResponseMessage = CreateInteractionResponseMessage::new()
|
||||
.content(format!("{} | This command is only for the owner", _emoji.answer.no))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue