Sfoglia il codice sorgente

Remove console.log

Alex Tran 3 anni fa
parent
commit
c129023821
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  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> {
   async getUserById(userId: string): Promise<UserResponseDto> {
-    console.log(userId);
     const user = await this.userRepository.get(userId);
     const user = await this.userRepository.get(userId);
     if (!user) {
     if (!user) {
       throw new NotFoundException('User not found');
       throw new NotFoundException('User not found');