I’ve realised that there is more levels than all, debug, info, warn, error and fatal, they are listed in the log4net.Core.Level class.
But how can I use them? I mean, in the ILog interface you have methods to use the usual ones, but what if you want to use “Fine” or “Emergency”, etc?
Cheers.
In the following example
Logis of typeILog.For each level you check their
Valuein order to know when they are disabled.For log4net version 1.2.10.0 you have the following levels and associated cut off values:
Note that some levels share the same values so disabling one of them will also disable the other, like for example TRACE and FINER.