vote up 1 vote down star
1

Hi

I was just wondering why there isn't a trace level in log4Net. This level seems to be missing and I sometimes feel the need to use it, for example to output what events are being executed in an application. This feature is a part of log4J.

I know I can create a custom level like is talked about here but I don't want to put time and effort in something I feel should be part of the library itself.

Do you know about a log4net extension library which implements this or why this wasn't a part of the port to .net ?

flag

60% accept rate

2 Answers

vote up 1 vote down check

The log4net.ILog interface only exposes methods and properties for Fatal,Error,Warn,Info and Debug levels.

I agree this is a bit limiting, and would like to see one more level in there. But then the optimal number of levels is probably "one more than the current number of levels" - you'll always find yourself occasionally wanting one more level.

link|flag
Yeah I agree, you are probably left with wanting more. Strange though that they left TRACE out of the ILog interface since it's available in the SDK as nos pointed out in his answer – armannvg Sep 9 at 10:41
I suspect it was added to the SDK after the ILog interface was designed. – Joe Sep 9 at 16:54
vote up 4 vote down

There is a trace level http://logging.apache.org/log4net/release/sdk/log4net.Core.Level.Trace.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.