Thanks! That did it.
Vitaliy From: Dag Christensen [mailto:[EMAIL PROTECTED] Sent: Sunday, November 09, 2008 13:12 To: Log4NET User Subject: RE: Printing a log message of level 'ALL' You can invoke log.Logger.Log passing log4net.Core.Level.Verbose as the log level. Levels in log4net are integers in increasing order. If the level of your log event is equal to or higher than your logger's level the event will be passed on to its appenders. Level.All equals int.MinValue, Level.Verbose.Value= 10000, Level.Debug.Value= 30000 etc. Level.Off (int.MaxValue) disables all logging. Hope this helps, Dag ________________________________ Dag Christensen Senior Developer, Visma Retail AS Switchboard : +47 33 34 94 00 ________________________________ From: Vitaliy [mailto:[EMAIL PROTECTED] Sent: Sunday, November 09, 2008 10:36 AM To: [email protected] Subject: Printing a log message of level 'ALL' Hi, In some cases I would like to print messages to the log of my application, At a level lower than 'DEBUG'. I've noticed in the documentation that the level 'ALL' should do it, But I failed to find a way to print messages for this level. For instance ILog interface has methods for printing messages of levels: 'DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL', But none for the level 'ALL'. What's the obvious I'm missing? Is there any other built-in way to print to 'ALL', Or should I extend that interface, and implement it myself? I would really appreciate any help, Vitaliy __________ Information from ESET NOD32 Antivirus, version of virus signature database 3597 (20081108) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com ########################################### This message has been scanned by F-Secure Anti-Virus for Microsoft Exchange. For more information, connect to http://www.f-secure.com/
