I can't seem to find the numeric values for the predefined levels in Log4Net. Can anybody point me to them?
+2
A:
Here is an excerpt from the Level class (decompiled with .net reflector)
public static readonly Level Alert = new Level(0x186a0, "ALERT");
public static readonly Level All = new Level(-2147483648, "ALL");
public static readonly Level Critical = new Level(0x15f90, "CRITICAL");
public static readonly Level Debug = new Level(0x7530, "DEBUG");
public static readonly Level Emergency = new Level(0x1d4c0, "EMERGENCY");
public static readonly Level Error = new Level(0x11170, "ERROR");
public static readonly Level Fatal = new Level(0x1adb0, "FATAL");
public static readonly Level Fine = new Level(0x7530, "FINE");
public static readonly Level Finer = new Level(0x4e20, "FINER");
public static readonly Level Finest = new Level(0x2710, "FINEST");
public static readonly Level Info = new Level(0x9c40, "INFO");
private readonly string m_levelDisplayName;
private readonly string m_levelName;
private readonly int m_levelValue;
public static readonly Level Notice = new Level(0xc350, "NOTICE");
public static readonly Level Off = new Level(0x7fffffff, "OFF");
public static readonly Level Severe = new Level(0x13880, "SEVERE");
public static readonly Level Trace = new Level(0x4e20, "TRACE");
public static readonly Level Verbose = new Level(0x2710, "VERBOSE");
public static readonly Level Warn = new Level(0xea60, "WARN");
dcp
2010-01-04 11:36:37
A:
Can someone please explain what is the "best practice" of using those error levels? What is the relationship between them?
Thank you, Ido.
Ido Ran
2010-08-18 12:23:39
Maybe you should make a separate question and put a link to this question...
Stefan Egli
2010-08-18 12:34:54