Adding logger on api
Some checks failed
Music Collection CI Workflow / test (./backend) (push) Successful in 30s
Music Collection CI Workflow / test (./frontend) (push) Successful in 35s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/music-collection-backend, ./backend) (push) Successful in 51s
Music Collection CI Workflow / deploy (push) Has been cancelled
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Has been cancelled

This commit is contained in:
Phill Pover 2025-04-07 05:09:57 +01:00
parent 65c890eb77
commit 0b3076de3c
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { AppModule } from './app.module';
async function bootstrap() { async function bootstrap() {
const app = await NestFactory.create(AppModule, { const app = await NestFactory.create(AppModule, {
logger: ['error', 'warn'], logger: ['error', 'log', 'warn'],
}); });
app.enableCors({ app.enableCors({
origin: ['https://music.anatid.net'], origin: ['https://music.anatid.net'],

View File

@ -29,6 +29,7 @@ export class SongController {
@Put(':id') @Put(':id')
@UsePipes(new ValidationPipe({ transform: true })) @UsePipes(new ValidationPipe({ transform: true }))
async update(@Param('id') id: number, @Body() updateSongDto: UpdateSongDto): Promise<Song | null> { async update(@Param('id') id: number, @Body() updateSongDto: UpdateSongDto): Promise<Song | null> {
console.log(updateSongDto);
return this.songService.update(id, updateSongDto); return this.songService.update(id, updateSongDto);
} }