Enable tracing to log entries in the ASP.Net Core pipeline.
Keys/Types can be included/ignored.
Log format, type format, log action can be globally set whilst type format and log actions can be set individually for each type and key.
Enables granular pipeline logging.
public void Configuration(IApplicationBuilder app)
{
var defaultOptions = TracingMiddlewareOptions.Default;
app.UseTracingMiddleware(defaultOptions);
app.UseOwin(x => x.UseNancy());
}
The above produces:
For custom usage take a look at the demo app here