This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class NLogger : Microsoft.Extensions.Logging.ILogger | |
{ | |
private readonly Logger logger; | |
private readonly string name; | |
private readonly NloggerConfiguration nloggerConfiguration; | |
private readonly UserContext userContext; | |
private readonly RequestContext requestContext; | |
public NLogger(string name, | |
NloggerConfiguration nloggerConfiguration, | |
UserContext userContext, |