feat: debug added log points for entra failing saml

This commit is contained in:
=
2024-09-12 00:19:16 +05:30
parent ce3af41ebc
commit 1384c8e855
2 changed files with 8 additions and 1 deletions

View File

@@ -103,6 +103,13 @@ export const registerSamlRouter = async (server: FastifyZodProvider) => {
const email = profile?.email ?? (profile?.emailAddress as string); // emailRippling is added because in Rippling the field `email` reserved
if (!email || !profile.firstName) {
logger.info(
{
err: new Error("Invalid saml request. Missing email or first name"),
profile
},
`email: ${email} firstName: ${profile.firstName as string}`
);
throw new BadRequestError({ message: "Invalid request. Missing email or first name" });
}

View File

@@ -7,4 +7,4 @@ scripts/initialize-standalone-build.sh
cd ../
exec node dist/main.mjs
exec node --enable-source-maps dist/main.mjs