Just came across the docs https://docs.nestjs.com/techniques/logger#using-the-logger-for-application-logging
private readonly logger = new Logger(MyService.name);
I wonder why it is using new instead of constructor injection in that case?
Documentation | NestJS - A progressive Node.js framework
Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).