From d130c338b8e5b861db746a082b8f1b995be9f0b7 Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 14 May 2024 05:00:11 -0700 Subject: [PATCH] Add logging library for improved error handling. --- webhook_handler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/webhook_handler.go b/webhook_handler.go index c7cff9e..d782c7a 100644 --- a/webhook_handler.go +++ b/webhook_handler.go @@ -5,6 +5,7 @@ import ( "context" "encoding/json" "fmt" + "log/slog" "net/http" "net/url" )