2 articles in Logging
Turning on internal logging for log4net
July 15, 2019
Turning on internal logging for log4net is straight forward and provides a detailed information about the many issues that may occur. Add in Debug App Setting There is only two things that you need to do... first up add in the following app setting: \<add key="log4net.Internal.Debug" value="true…
Setting up log4net in ASP.NET MVC
April 2, 2015
I seem to burn far to many hours trying to do the relatively simple task of setting up log4net on a project. Well step one is easy enough, install through nuget . Next... Add web.config settings I like to create a separate config file for log4net because it keeps things simpler. So add the…