Showing posts from October, 2015

Configure log4net logging framework for ASP.NET MVC

This post will provide a short overview of the steps needed to integrate the  Apache log4net  logging framework to an ASP.NET MVC Web application: Include the log4net in your MVC project, you can use the  NuGet  package manager (Alternatively, you can also download and add the  log4net.dll  reference manually): PM> install-package Log4Net Add the following tags to the MVC  Web.config  file: < configuration > < configSections > [...] < section name = "log4net&…

Load More
That is All