From fa98d63326119cf75e3e251c00f7b621eed03caf Mon Sep 17 00:00:00 2001 From: Kalle Carlbark Date: Tue, 20 Aug 2024 13:41:46 +0200 Subject: [PATCH] handle gzipped requests som more --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index c618b63..0030152 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ func requestHandler(w http.ResponseWriter, r *http.Request) { } else { requestbody, _ = io.ReadAll(r.Body) } - fmt.Printf("\n--- BODY ---\n%s\n", string(requestbody)) + fmt.Printf("\n--- BODY ---\n%s\n--- ENDBODY ---\n", string(requestbody)) } if *header {