diff --git a/internal/application/messages/reactions.go b/internal/application/messages/reactions.go index 4fe1ef3..6c2ce7f 100644 --- a/internal/application/messages/reactions.go +++ b/internal/application/messages/reactions.go @@ -40,16 +40,15 @@ func matchReaction(emoji string)func(*models.Update)bool{ if update.MessageReaction != nil && len(update.MessageReaction.NewReaction) > 0{ switch reaction := update.MessageReaction.NewReaction[0].Type; reaction { case models.ReactionTypeTypeEmoji: - log.Info("emoji message reaction encounter", "reactions", update.MessageReaction.NewReaction) + log.Debug("emoji message reaction encounter", "reactions", update.MessageReaction.NewReaction) if update.MessageReaction.NewReaction[0].ReactionTypeEmoji.Emoji == emoji{ return true } } }else{ - log.Info("not the same character") return false } - log.Info("not a reaction") + log.Debug("not a reaction") return false }