PreviousNext

A generic logger factory facade for classic ASP.NET

by bill-s, 2018-04-13T04:04:08.787Z

ASP.NET Core already has this feature. There is a ILoggerFactory to create a logger. You are able to inject the ILoggerFactory to your component (Controller, Service, etc.) and to create a named logger out of it. During testing you are able to replace this factory with a mock, to not test the logger as well and to not have an additional dependency to setup.

Read More