From eee5cb2fef41fe4b286ed3f69c42be509fd68f5e Mon Sep 17 00:00:00 2001 From: Elara Musayelyan Date: Sun, 11 Jun 2023 18:55:14 +0000 Subject: [PATCH] Remove debug code --- internal/builtins/http.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/builtins/http.go b/internal/builtins/http.go index 2759d4d..baf9fa5 100644 --- a/internal/builtins/http.go +++ b/internal/builtins/http.go @@ -353,8 +353,6 @@ func verifySecure(pwdHash, pluginName string, req *http.Request) error { return ErrInsecureWebhook } - fmt.Println(string(pwd)) - if err := bcrypt.CompareHashAndPassword([]byte(pwdHash), pwd); err != nil { return ErrIncorrectPassword }