TLogEvent Record

Represents type TLogEvent.

Namespace: Spring.Logging
type
 TLogEvent = record
 end;

The TLogEvent type exposes the following members.

Show:
 NameDescription
Create(TLogLevel,string)

Overloaded. Initializes a new instance of the TLogEvent class.

Create(TLogLevel,string,Exception)

Overloaded. Initializes a new instance of the TLogEvent class.

Create(TLogLevel,TLogEventType,string)

Overloaded. Initializes a new instance of the TLogEvent class.

Create(TLogLevel,TLogEventType,string,TClass)

Overloaded. Initializes a new instance of the TLogEvent class.

Create(TLogLevel,TLogEventType,string,TClass,TValue)

Overloaded. Initializes a new instance of the TLogEvent class.

Top
Show:
 NameDescription
AddStackValue

Represents property AddStackValue.

ClassType

Represents property ClassType.

Color

Represents property Color.

Data

Represents property Data.

EventType

Represents property EventType.

Exception

Represents property Exception.

Level

Represents property Level.

Msg

Represents property Msg.

Style

Represents property Style.

Tag

Represents property Tag.

TimeStamp

Represents property TimeStamp.

Top
Show:
 NameDescription
AddStack

Represents method AddStack.

SetClassType(TClass)

Represents method SetClassType(TClass).

SetColor(TColor)

Represents method SetColor(TColor).

SetData(TValue)

Represents method SetData(TValue).

SetException(Exception)

Represents method SetException(Exception).

SetStyle(TLogStyles)

Represents method SetStyle(TLogStyles).

SetTag(NativeInt)

Represents method SetTag(NativeInt).

Top
Show:
 NameDescription
fAddStack

Represents field fAddStack.

fClassType

Represents field fClassType.

fColor

Leave as default to instruct the appender/viewer to choose the default color based on the level or event contents or prescribe the color of your choosing (not that some appenders may ignore the color).

fData

An arbitrary data that the logger may output to the appenders

fEventType

Represents field fEventType.

fException

Represents field fException.

fLevel

Represents field fLevel.

fMsg

Represents field fMsg.

fStyle

Similar to Color but defines a text style.

fTag

Additional data anyone can use to extend behavior of their appenders

fTimeStamp

Represents field fTimeStamp.

Top