Hi, I want to extend the built-in logger like here:
https://docs.nestjs.com/techniques/logger
However, my hope is to be able to include a user identifier in the logs.
Is there a way to get the Request object or context similar to:
const request = context.switchToHttp().getRequest<Request>();
If I could do that inside the logger, that'd be fantastic.