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 }