From e31a184f978e89f6a2f0f3eead13c92aee14f448 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Thu, 16 Apr 2026 13:05:21 +0200 Subject: [PATCH] chore: test old --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index bedbde1..97933f1 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,6 @@ import ( "bytes" _ "embed" "fmt" - "log" "net/http" "os" "text/template" @@ -115,7 +114,7 @@ func main() { githubactions.Fatalf("error %s", err.Error()) } - log.Printf("retrieved data: %s", string(jsonStr)) + // log.Printf("retrieved data: %s", string(jsonStr)) req, err := http.NewRequest("POST", webhook, bytes.NewBuffer(jsonStr)) if err != nil { @@ -131,6 +130,7 @@ func main() { fmt.Println("response Status:", resp.Status) if resp.StatusCode != http.StatusOK { fmt.Printf("response: %+v\n", resp) + fmt.Printf("data: %+v\n", jsonStr) os.Exit(1) } }