replaced fmt.Println with logger usage

This commit is contained in:
2026-01-11 17:15:57 -07:00
parent 83b99418cd
commit a72fd9e0e8
5 changed files with 9 additions and 7 deletions
-4
View File
@@ -177,10 +177,6 @@ func (p *Platform) HandleNewAuthCode(ctx context.Context, acctID int64, state, a
return false, fmt.Errorf("failed to parse response body: %w", err)
}
fmt.Println("new access token:", accessToken)
fmt.Println("new refresh token:", refreshToken)
fmt.Println("new token expiration:", expiration)
// look up user's shop id
shopID, err := p.getNewUserShopID(ctx, accessToken, userID)