This is how I create a logger:
private readonly logger: Logger = new Logger('Auth Resolver')
And this is how I use it:
this.logger.log('Some log message')
There is not a config or custom logging. Just trying to print a log message from a newly constructed Nest JS application. I looked through the source code of the Logger
class and saw that it directs all output to process.stdout
but nothing is printed to the terminal window I run the application.
Am I missing something here?