PreviousNext

Serilog in ASP.NET Core 3.1 – Structured Logging Made Easy

by iammukeshm, 2020-05-27T16:50:20.759Z

In this article, let’s go through Serilog in ASP.NET Core 3.1 and it’s implementations. Now by default, ASP.NET Core comes with some basic logging features built-in. You must have seen the ILogger interface throughout your ASP.NET Core Application. But what if we want more control over how and where to log the details? That is where Logging Frameworks / Libraries come into play. Out of all of them, Serilog is one of the most popular Libraries for ASP.NET Core Applications.

Read More