Browse Source

Remove console.log

Alex Tran 3 years ago
parent
commit
c129023821
1 changed files with 0 additions and 1 deletions
  1. 0 1
      server/apps/immich/src/api-v1/user/user.service.ts

+ 0 - 1
server/apps/immich/src/api-v1/user/user.service.ts

@@ -39,7 +39,6 @@ export class UserService {
   }
 
   async getUserById(userId: string): Promise<UserResponseDto> {
-    console.log(userId);
     const user = await this.userRepository.get(userId);
     if (!user) {
       throw new NotFoundException('User not found');