diff --git a/src/main.ts b/src/main.ts index 71ea572..20cdd7b 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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);