If you do not see any logging, you can check if Configure()
is called in your application. The easiest way is to add it as an attribute to your assembly:
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
Then you do not have to add log4net.Config.XmlConfigurator.Configure()
anywhere in your configuration. Or you can add log4net.Config.XmlConfigurator.Configure()
in one of your startup methods. Make sure you only call the configuration once.