
I recently started looking at writing new development in .net Core 2.2 instead of my standard MVC5. This meant rewriting my class libraries as they are not compatible without adding in a dependency on the .net Framework.
.net Core provides a logging framework out of the box and its very snazzy but all I want from a logger is for it to log the error and the location to a text file. This isn't even supported in the default ILogger implementations in .net Core. I am a great believer in logging ...
More