I have a custom logger, I would like to create an extension method called
SetContext(uniqueKey, object)
where I can set a property in my custom logger and log that context when logging a message.
So the code would look like this
_logger
.SetContext(User.Email(), User)
.LogError(1, new Exception("foo foo foo"), "bleep Bloop");
The problem I seem to be facing is that the ILogger, returned via DI in my controller, and in turn used by my extension method is not actually my custom ILogger implementation.
public static ILogger SetContext(this ILogger logger, string uniqueUserIdentifier, object context)
{
var redisPublisherLogger = logger as RedisPublisherLogger;
if (redisPublisherLogger == null)
{
return logger;
}
redisPublisherLogger.Context = new LoggingContext
{
ContextData = context,
UniqueUserIdentifier = uniqueUserIdentifier
};
return logger;
}
So is there anyway I can go about doing something like this, I'm trying to avoid overriding all the logging methods on ILogger.
Any help would be appreciated! Thanks
Have a partial answer to your question...
DI returns you an Microsoft.Extensions.Logging.Logger instance, that is an aggregator for all registered loggers. If you check implementation, you will see that it has
and it
Log
method iterate over those loggers and calls each separately. YourRedisPublisherLogger
instance is an item in that array. The problems start here as thisLogger
class is internal andILogger
interface doesn't expose that property.