From e1f051ef5e57336783d8786e68d3de1c7063558a Mon Sep 17 00:00:00 2001 From: aube-dev Date: Thu, 19 Sep 2024 22:57:44 +0900 Subject: [PATCH] refactor: remove unnecessary console --- server/models/auth.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/server/models/auth.ts b/server/models/auth.ts index ee4e984..878d161 100644 --- a/server/models/auth.ts +++ b/server/models/auth.ts @@ -30,7 +30,6 @@ export class AuthSessionService { * - Set-Cookie를 할 필요가 없는 경우 `null` 반환 */ async commitSession(): Promise { - console.log('commitSession', this.nextAction); if (this.nextAction === 'destroy') { const cookieHeader = await this.authSessionStorage.destroySession( this.authSession,