TLogEventType Enumeration

Represents type TLogEventType.

Namespace: Spring.Logging
type
 TLogEventType = (
 Text,
 Value,
 CallStack,
 SerializedData,
 Entering,
 Leaving
 );

The TLogEventType type exposes the following members.

Show:
 NameDescription
CallStack

Should only be called if stack is sent to the appender. The appender may treat it in a specific way. No one else should use this event type. If this event type is not set, callstack logging will be disabled completely, this may have significant performance impact on some platforms.

Entering

Represents constant Entering.

Leaving

Represents constant Leaving.

SerializedData

Should only be called if serialized data (object, record, etc.) is sent to the appender. The appender may treat it in a specific way. No one else should use this event type. If this level is not set, data serialization logging will be disabled completely.

Text

Is the most basic logging type all loggers should keep enabled

Value

Represents constant Value.

Top