New NLog OWIN adapter has been released

24 Mar 2016

We’re proud to announce that the former community project NLogAdapter is now part of NLog as NLog.Owin.Logging to provide a Microsoft.Owin.Logging.ILoggerFactory implementation for your OWIN pipeline.

Usage is as simple as:

PM > Install-Package NLog.Owin.Logging
using NLog.Owin.Logging;

public class Startup
{
    public void Configuration(IAppBuilder app)
    {
        app.UseNLog();
    }
}