I am trying to use log4net with ASP.NET MVC and I cannot get anything to happen with it. I\'ve created a config that is in my web project root:
Do you have something like this in global.asax?
void Application_Start(object sender, EventArgs e) { string l4net = Server.MapPath("~/log4net.config"); log4net.Config.XmlConfigurator.ConfigureAndWatch(new System.IO.FileInfo(l4net)); ...