From a00346b748cb4baa4cbb455b0797b841e758716b Mon Sep 17 00:00:00 2001 From: Timo Glastra Date: Thu, 11 Apr 2024 18:11:18 +0200 Subject: [PATCH] remove console log Signed-off-by: Timo Glastra --- src/authorization-response/AuthorizationResponse.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/authorization-response/AuthorizationResponse.ts b/src/authorization-response/AuthorizationResponse.ts index 4f04191..b6cb6e2 100644 --- a/src/authorization-response/AuthorizationResponse.ts +++ b/src/authorization-response/AuthorizationResponse.ts @@ -157,7 +157,6 @@ export class AuthorizationResponse { const firstNonce = Array.from(allNonces)[0]; if (allNonces.size !== 1 || typeof firstNonce !== 'string') { - console.log(allNonces, firstNonce, merged.nonce, verifiedIdToken.payload.nonce, oid4vp.nonce); throw new Error('both id token and VPs in vp token if present must have a nonce, and all nonces must be the same'); } if (verifyOpts.nonce && firstNonce !== verifyOpts.nonce) {