Skip to content
This repository has been archived by the owner on Feb 27, 2022. It is now read-only.

serilog-archive/serilog-sinks-nlog

Repository files navigation

Serilog.Sinks.NLog

Build status

Adapts Serilog to write events through existing NLog infrastructure.

Package - Serilog.Sinks.NLog | Platforms - .NET 4.5

You'll need to configure NLog, too.

var log = new LoggerConfiguration()
    .WriteTo.NLog()
    .CreateLogger();