From 076ef44873068745285fdeaa26da18d079be7981 Mon Sep 17 00:00:00 2001 From: j1nxie Date: Sun, 17 Nov 2024 10:00:36 +0700 Subject: [PATCH] fix: embarrassing --- src/commands/role.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/role.rs b/src/commands/role.rs index 6b30d46..fe3fccd 100644 --- a/src/commands/role.rs +++ b/src/commands/role.rs @@ -129,7 +129,7 @@ pub async fn add(ctx: Context<'_>) -> Result<(), Error> { /// remove a self-assignable role from your role list. #[poise::command(slash_command, prefix_command)] -#[tracing::instrument(skip_all, fields(input = %input))] +#[tracing::instrument(skip_all)] pub async fn remove(ctx: Context<'_>) -> Result<(), Error> { let mut db_roles_find = roles::Entity::find().paginate(&ctx.data().db, 10);