From 250862fea2696109a12ca2dacee57b91ba11b18d Mon Sep 17 00:00:00 2001 From: Nicolas Ayral Seydoux Date: Wed, 4 Oct 2023 10:06:41 +0200 Subject: [PATCH] Remove console statements --- packages/browser/src/Session.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/browser/src/Session.ts b/packages/browser/src/Session.ts index 2891de0652..f07fcc7283 100644 --- a/packages/browser/src/Session.ts +++ b/packages/browser/src/Session.ts @@ -338,12 +338,10 @@ export class Session extends EventEmitter implements IHasSessionEventListener { const url = options.url ?? window.location.href; this.tokenRequestInProgress = true; - window.console.log("Awaiting incoming redirect handling"); const sessionInfo = await this.clientAuthentication.handleIncomingRedirect( url, this.events, ); - window.console.log("incoming redirect handled"); if (isLoggedIn(sessionInfo)) { this.setSessionInfo(sessionInfo); const currentUrl = window.localStorage.getItem(KEY_CURRENT_URL);