PreviousNext

Customizing ASP.​NET Core Part 01: Logging

by JuergenGutsch, 2018-09-25T06:45:21.975Z

In this first part of the new blog series about customizing ASP.NET Core, I will show you how to customize the logging. The default logging only writes to the console or to the debug window. This is quite good for the most cases, but maybe you need to log to a sink like a file or a database. Maybe you want to extend the logger with additional information. In that cases you need to know how to change the default logging.

Read More