Skip to content

Instantly share code, notes, and snippets.

@dimitrispaxinos
Created November 3, 2015 16:22
Show Gist options
  • Save dimitrispaxinos/789f7001592069ceae2c to your computer and use it in GitHub Desktop.
Save dimitrispaxinos/789f7001592069ceae2c to your computer and use it in GitHub Desktop.
Serilog: Create Logger that can include some context
// Create Logger with Context
Log.Logger = new LoggerConfiguration()
.Enrich.FromLogContext() // Enrich with context when available
.WriteTo.Seq("http://localhost:5341")
.CreateLogger();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment