From f70da3ff9aa843f42d3044c4c728dca012b1eea1 Mon Sep 17 00:00:00 2001 From: Kallesh B S Date: Fri, 26 Sep 2025 12:59:34 +0530 Subject: [PATCH] fix 1 --- src/auth/auth.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auth/auth.service.ts b/src/auth/auth.service.ts index b0f7b14..d68b5c5 100644 --- a/src/auth/auth.service.ts +++ b/src/auth/auth.service.ts @@ -666,6 +666,7 @@ export class AuthService { }); return { statusCode: 200, message: 'Logged-Out successfully' }; } catch (error) { + console.log(error.message); throw new InternalServerErrorException('Logout failed'); } }