#How to prevent initial logs from appearing?
1 messages · Page 1 of 1 (latest)
In the NestFactory.create options, add logger: false
Don't forget to bind a new logger after creation using app.useLogger()
Thank you, that works but I would like to maintain the final log
Nest] 21273 - 12/26/2022, 1:20:34 PM LOG [NestApplication] Nest application successfully started +4ms
is there a way to know when the nest app was correctly initialized?
I mean, you could implement your own logger that ignores the RoutesExplorer and RoutesResolver contexts