I have created a simple scenario using Log4net, but it seems that my log appenders do not work because the messages are not added to the log file.
I added the followi
Make sure the following line code should be there in AssemblyInfo.cs file.
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Web.config", Watch = true)]
and also check for this line in Application_start() method.
log4net.Config.XmlConfigurator.Configure();