removed debug logs

This commit is contained in:
Tordarus 2025-02-02 10:57:52 +01:00
parent 921138f450
commit b320c395df

2
api.go
View File

@ -180,7 +180,6 @@ func (api *Api) AutoRefresh(ctx context.Context) error {
}
func (api *Api) Refresh() error {
fmt.Println("refresh")
api.refreshMutex.Lock()
defer api.refreshMutex.Unlock()
@ -211,6 +210,5 @@ func (api *Api) Refresh() error {
api.accessToken = response.Result.AccessToken
api.refreshToken = response.Result.RefreshToken
fmt.Println("refresh successful")
return nil
}