Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MahdiKarimipour/be2d4e297c472a31bf9cb721559e0751 to your computer and use it in GitHub Desktop.
Save MahdiKarimipour/be2d4e297c472a31bf9cb721559e0751 to your computer and use it in GitHub Desktop.
Integrating Nlogger to Asp.NET Middleware Pipleline
public void Configure(
IApplicationBuilder app,
IWebHostEnvironment env,
IApiVersionDescriptionProvider provider,
ILoggerFactory loggerFactory,
UserContext userContext,
RequestContext requestContext)
{
loggerFactory.AddProvider(
new LoggerProvider(new NloggerConfiguration(),
userContext,
requestContext));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment