From b7627a36a60143f142053f69341efb42175f2253 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Thu, 9 Nov 2023 10:49:17 +0530 Subject: [PATCH] Add debug point --- server/handlers/oauth_callback.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/handlers/oauth_callback.go b/server/handlers/oauth_callback.go index bd5d5ac..549b79a 100644 --- a/server/handlers/oauth_callback.go +++ b/server/handlers/oauth_callback.go @@ -579,6 +579,7 @@ func processAppleUserInfo(ctx context.Context, code string) (*models.User, error } claims := make(map[string]interface{}) + log.Debug("Decoded data :%s", string(decodedClaimsData)) err = json.Unmarshal(decodedClaimsData, &claims) if err != nil { log.Debug("Failed to unmarshal claims data: ", err)