From 16af99d38eb1ade77062db379a76db87df6957f6 Mon Sep 17 00:00:00 2001 From: Alex Savin Date: Wed, 2 Jul 2025 16:16:12 +0300 Subject: [PATCH] More debug --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index b72b90d..f816a8e 100644 --- a/client.go +++ b/client.go @@ -270,8 +270,8 @@ func (c *Client) auth() *Response { "selectedVin": "", "pushToken": ""} reqURL := MOBILE_API_VERSION + apiURLs["API_LOGIN"] - // TODO: Add error handling resp, err := c.execute(POST, reqURL, params, false) + c.logger.Debug("AUTH HTTP OUTPUT", "body", resp) if err != nil { c.logger.Error("error while executing auth request", "request", "auth", "error", err.Error()) return nil