diff --git a/src/main.rs b/src/main.rs index 1759f14..f84f7b2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,8 +46,8 @@ impl EventHandler for Handler async fn reaction_add(&self, ctx: Context, add_reaction: Reaction) { - println!("reaction_add event"); - //utils::Logger::log_message(ctx, &format!("reaction add event: {:#?}", add_reaction)).await; + // println!("reaction_add event"); + // utils::Logger::log_message(ctx, &format!("reaction add event: {:#?}", add_reaction)).await; // todo!() commands::handle_reaction_add(ctx, add_reaction).await; @@ -55,8 +55,8 @@ impl EventHandler for Handler async fn reaction_remove(&self, ctx: Context, removed_reaction: Reaction) { - println!("reaction_remove event"); - //utils::Logger::log_message(ctx, &format!("reaction removed event: {:#?}", removed_reaction)).await; + // println!("reaction_remove event"); + // utils::Logger::log_message(ctx, &format!("reaction removed event: {:#?}", removed_reaction)).await; commands::handle_reaction_remove(ctx, removed_reaction).await; }