.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. Performance, Diagnostic, Usage etc).
Diagnostic Logs
These are similar to console.log() in JavaScript. These will be used mostly by developers, when they want to log particular…