From 1fbe8579baf9beadaea277fb902d37c497d9dfc6 Mon Sep 17 00:00:00 2001 From: eeckert Date: Thu, 21 Dec 2023 13:42:27 -0700 Subject: [PATCH] this is not longer needed --- main/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/main.go b/main/main.go index 1c1ad4e..4605e06 100644 --- a/main/main.go +++ b/main/main.go @@ -144,7 +144,7 @@ func readDataStream(resp http.ResponseWriter, request *http.Request) { var request_body Payload // init request_body as data type Payload - uses custom structs body_string, _ := io.ReadAll(request.Body) // ready Body Data log_values.BodyData = string(body_string) // prep for logging - fmt.Printf("%+v\n", log_values) // debug code to show JASON data coming in + // fmt.Printf("%+v\n", log_values) // debug code to show JASON data coming in err := json.Unmarshal(body_string, &request_body) if err != nil {