From 21bea85895b4f6e86456b58e3dda7bb87d5ca6ea Mon Sep 17 00:00:00 2001 From: mycodedoesnotcompile2 <149587341+mycodedoesnotcompile2@users.noreply.github.com> Date: Sat, 13 Dec 2025 11:53:17 +0000 Subject: [PATCH] Update api.go --- api/api.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/api.go b/api/api.go index f34109e..4d9ed3f 100644 --- a/api/api.go +++ b/api/api.go @@ -43,7 +43,7 @@ func RegisterRoutes(ctx context.Context, wg *sync.WaitGroup, engine *html.Engine //return nil //req_code, req_body, req_errs := c.Request().String() //log.Printf("RESPONSE: %s | %s | %s ", req_code, req_body, req_errs) - log.Printf("REQUEST: %s", c.Request().Body()) + //log.Printf("REQUEST: %s", c.Request().Body()) return nil }, ModifyResponse: func(c *fiber.Ctx) error { @@ -51,6 +51,7 @@ func RegisterRoutes(ctx context.Context, wg *sync.WaitGroup, engine *html.Engine //return nil //res_code, res_body, res_errs := c.Response().String() //log.Printf("RESPONSE: %s | %s | %s ", res_code, res_body, res_errs) + log.Printf("RESP: %s", string(c.Response().Body())) return nil }, }))