Created
March 18, 2016 15:18
-
-
Save pysco68/564dbd9212d93b533b1c to your computer and use it in GitHub Desktop.
Using NLog.Owin.Logging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-Package NLog.Owin.Logging |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using NLog.Owin.Logging; | |
public class Startup | |
{ | |
public void Configuration(IAppBuilder app) | |
{ | |
app.UseNLog(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment