From 23e242be8a62dad758b6ee6dd23700041c61abd7 Mon Sep 17 00:00:00 2001 From: Alex Savin Date: Wed, 2 Jul 2025 16:08:39 +0300 Subject: [PATCH] Enabled auth debug output --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 05b8acd..f13e53e 100644 --- a/client.go +++ b/client.go @@ -272,7 +272,7 @@ func (c *Client) auth() *Response { reqURL := MOBILE_API_VERSION + apiURLs["API_LOGIN"] // TODO: Add error handling resp, _ := c.execute(POST, reqURL, params, false) - // c.logger.Debug("AUTH HTTP OUTPUT", "body", string([]byte(resp))) + c.logger.Debug("AUTH HTTP OUTPUT", "body", resp) return resp }