.NET Core Logger using Serilog – Part 4

Introduction Earlier in the series, we started putting together an implementation of log messages. We are using ASP.NET Core Web Application and Serilog library. We defined various types of logs and then put together small codebase which hooks up in ASP.NET Core pipeline easily and leverages its infrastructure as well. In previous post of this … Read more

.NET Core Logger using Serilog – Part 3

Introduction Welcome back. In the previous part of this series, we centralized exception handling logic using ASP .NET Core Middleware and our Web Helper for logging concern. We saw the error messages are being persisted to the corresponding file. In this post we will see how to persist other type of logs as well (i.e. … Read more

.NET Core Logger using Serilog – Part 1

A simple .NET Core logger implementation using Serilog library. Introduction Logging is very important part of any software application. It might be needed for various reasons. You might want to log e.g. for one or all of the following reasons: What your website users do on your website? Which page are popular on your site? … Read more