From 810531b7e0be014d79acb40b72e3b202c3d0e3b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Mart=C3=ADn?= Date: Fri, 12 Dec 2025 12:00:10 +0100 Subject: [PATCH] Remove logging from linkOidcToUser method in AuthService --- apps/api/src/app/auth/auth.service.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/api/src/app/auth/auth.service.ts b/apps/api/src/app/auth/auth.service.ts index 4061f6299..3a7f338f0 100644 --- a/apps/api/src/app/auth/auth.service.ts +++ b/apps/api/src/app/auth/auth.service.ts @@ -102,11 +102,6 @@ export class AuthService { userId: string, thirdPartyId: string ): Promise { - Logger.log( - `linkOidcToUser: Starting link process for user ${userId.substring(0, 8)}... with thirdPartyId ${thirdPartyId.substring(0, 8)}...`, - 'AuthService' - ); - // Check if thirdPartyId is already linked to another user const [existingUser] = await this.userService.users({ where: { thirdPartyId }