diff --git a/backend/src/album/album.controller.ts b/backend/src/album/album.controller.ts index 5495cc9..f65cf48 100644 --- a/backend/src/album/album.controller.ts +++ b/backend/src/album/album.controller.ts @@ -17,8 +17,7 @@ export class AlbumController { } @Get(':id') - findOneById(@console.logremoveAlbumController findOnyById: ",id); - Param('id') id: number): Promise { + findOneById(@Param('id') id: number): Promise { console.log("AlbumController findOnyById: ",id); return this.albumService.findOneById(id); } @@ -39,7 +38,6 @@ export class AlbumController { @Delete(':id') async remove(@Param('id') id: number): Promise { - console.log("AlbumController remove: ",id); return this.albumService.remove(id); } }