TLogEventType Enumeration
Definition
Delphi
type TLogEventType = Text..Leaving
Constants
| Text |
Is the most basic logging type all loggers should keep enabled |
| Value | |
| 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. |
| 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. |
| Entering | |
| Leaving |