Last active
October 31, 2015 11:13
-
-
Save dimitrispaxinos/f34abc870cf39a27e5de to your computer and use it in GitHub Desktop.
Serilog Logger Initialization
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
// Create an Logger | |
Log.Logger = new LoggerConfiguration() | |
.WriteTo.Seq("http://localhost:5341") | |
.CreateLogger(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment