Hi, I observed that if I configure log4net using
XmlConfigurator.ConfigureAndWatch, and then programmatically change the
configuration (change 'root' log level, for example), further changes to the
configuration file (like changing the 'root' log level back to the original
value) does not cause the log level to revert back to the original value in
the code...
For example, when I call XmlConfigurator.ConfigureAndWatch my 'root' log level
is 'DEBUG'. I then change it to 'ERROR' programmtically. But then if I change
the log level back to 'DEBUG' in the config file, in my code the 'root' logger
still has the log level of 'ERROR'
Is this the intended behavior or am I missing something?
-Vivek