A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/nblumhardt/autofac-serilog-integration below:

nblumhardt/autofac-serilog-integration: Contextual logger injection for Autofac using Serilog

When using Serilog, contextual loggers attach the logging type's name to log events so they can later be found and filtered:

var log = Log.ForContext<SomeClass>();
log.Information("This event is tagged with 'SomeClass'");

Applications that use IoC often accept dependencies as constructor parameters:

public class SomeClass
{
  readonly ILogger _log;
  
  public SomeClass(ILogger log)
  {
    _log = log;
  }
  
  public void Show()
  {
    _log.Information("This is also an event from 'SomeClass'");
  }
}

This library configures Autofac to automatically configure the correct contextual logger for each class into which an ILogger is injected.

First install from NuGet:

Install-Package AutofacSerilogIntegration

Next, create the root logger:

Log.Logger = new LoggerConfiguration()
    .WriteTo.Console()
    .CreateLogger();

Then when configuring the Autofac container, call RegisterLogger():

var builder = new ContainerBuilder();

builder.RegisterLogger();

If no logger is explicitly passed to this function, the default Log.Logger will be used.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4