Private Readonly #loggersRescope the logger with the provided name. Used for tagging the logger.
The tag the logger should be given
Use the scope tool inside a 'using' to scope logging to a specific method.
return using(() => logger.scope("theNameOfMyScope"), logger =>
{
logger.debug("Log something here");
});
Generated using TypeDoc
ILogger interface for all logging implementations