From c1290238213ea46750ae6f52c263f9ca1478e6d5 Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Sun, 17 Jul 2022 15:10:04 -0500 Subject: [PATCH] Remove console.log --- server/apps/immich/src/api-v1/user/user.service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/server/apps/immich/src/api-v1/user/user.service.ts b/server/apps/immich/src/api-v1/user/user.service.ts index 4afd28be85..9a648b9964 100644 --- a/server/apps/immich/src/api-v1/user/user.service.ts +++ b/server/apps/immich/src/api-v1/user/user.service.ts @@ -39,7 +39,6 @@ export class UserService { } async getUserById(userId: string): Promise { - console.log(userId); const user = await this.userRepository.get(userId); if (!user) { throw new NotFoundException('User not found');