Remove logging as it should be fixed now

This commit is contained in:
Sebastian Cabrera 2023-08-30 22:54:40 -04:00
parent b0c39c3a52
commit 34749dd12a

View file

@ -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)