December 2019
Intermediate to advanced
510 pages
11h 33m
English
We will start this chapter by providing an overview of the different logging components of ASP.NET Core. The framework provides different interfaces that support logging:
The logging interface structure of ASP.NET Core can be described using the following schema:

In short, the ILoggerProvider interface represents the output of the logs, ILoggerFactory creates the right type of instance, and ...