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
usingNLog.Owin.Logging;publicclassStartup{publicvoidConfiguration(IAppBuilderapp){app.UseNLog();}}