This may be obvious, but I've missed it. (And I did try searching the mailing list archives too.)
Is there any simple way to specify the level of a logging in a C# program at runtime? The logger exposes methods log.Debug, log.Error, etc., but if I have the level passed into a function as a log4net.Core.Level value, is there any way other than using a switch statement and 5 log.xxx statements to get the results I want? Thanks.
