Enabled auth debug output
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 26s

This commit is contained in:
2025-07-02 16:08:39 +03:00
parent 0ff98f1f1f
commit 23e242be8a

View File

@ -272,7 +272,7 @@ func (c *Client) auth() *Response {
reqURL := MOBILE_API_VERSION + apiURLs["API_LOGIN"] reqURL := MOBILE_API_VERSION + apiURLs["API_LOGIN"]
// TODO: Add error handling // TODO: Add error handling
resp, _ := c.execute(POST, reqURL, params, false) 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 return resp
} }