Logging

.NET Core

Logging for .NET Core with Serilog

Serilog is a diagnostic logging library for .NET applications. It is easy to set up, has a clean API, and runs on all recent .NET platforms. While it's useful even in the simplest applications, Serilog's support for structured logging shines when instrumenting complex, distributed, and asynchronous applications and systems. This article describes how to configure Serilog for a .NET Core solution.

Read