Hi folks,
I'm using log4Net
for my logging. I also have the following set...
<log4net debug="true"> .. </>
Ok, now, when i have the following code
log4net.Config.BasicConfigurator.Configure();
I don't really get any verbose internal-debug info but I do get displayed anything I log.
Now, when i swap that code out and replace it with this:
log4net.Config.XmlConfigurator.Configure();
I get a lot of internal-debug xml info and anything I log, gets displayed.
So why is this? what's the difference between the two?