From 25ff869d3c3073ceafc33c6d4f6e4744b879c57c Mon Sep 17 00:00:00 2001 From: Conrad Bekondo Date: Mon, 13 Jan 2025 02:19:57 +0100 Subject: [PATCH] chore(ci): update branch-deploys.yml --- server/handlers/auth.mts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/handlers/auth.mts b/server/handlers/auth.mts index a606b9f..80dd94b 100644 --- a/server/handlers/auth.mts +++ b/server/handlers/auth.mts @@ -67,6 +67,7 @@ passport.use(new GoogleStrategy({ } return done(null, existingUser); } catch (e) { + logger.error('error while handling google sign in', { error: e }); return done(e, undefined); } }));