added logs to main

This commit is contained in:
sdraris 2025-09-05 12:56:47 +02:00
parent 6730b4457a
commit f9f59f9c95

View File

@ -8,7 +8,7 @@ import { JwtService } from '@nestjs/jwt';
import { RolesGuard } from './common/guards/roles.guard';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
const app = await NestFactory.create(AppModule, {logger: ["error", "warn", "log", "debug", "verbose"]});
const configService = app.get(ConfigService);