From f9f59f9c955738723864b90ce94017b09a3081ee Mon Sep 17 00:00:00 2001 From: sdraris Date: Fri, 5 Sep 2025 12:56:47 +0200 Subject: [PATCH] added logs to main --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);