From 34749dd12a609444b2750edf09ba46c62d929b22 Mon Sep 17 00:00:00 2001 From: okseby Date: Wed, 30 Aug 2023 22:54:40 -0400 Subject: [PATCH] Remove logging as it should be fixed now --- bot/utils.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/bot/utils.go b/bot/utils.go index f7ad883..6a587b8 100644 --- a/bot/utils.go +++ b/bot/utils.go @@ -86,8 +86,6 @@ func webhookHandler(w http.ResponseWriter, r *http.Request) { userType := strings.ToLower(event.GetComment().GetUser().GetType()) commentBody := event.GetComment().GetBody() - log.Println("User type:", userType, "Comment body:", commentBody) - if !strings.Contains(userType, "bot") && (strings.Contains(commentBody, "+1") || strings.Contains(commentBody, "👍")) { log.Println("Received Issue Comment Event: processing now!") processIssueCommentEvent(event)