class

LogRec

const class LogRec : Obj

LogRec all the information of a single logging event. See Logging for details.

constructors make

Constructor with all the fields

fields msg

Message text event

err

Exception if applicable

logName

Name of Log which generated the event

level

Severity level of event

time

Timestamp of log event

methods toStr

Return standard log format

print

Print to the specified output stream

err const Err? : err

Exception if applicable

level const LogLevel : level

Severity level of event

logName const Str : logName

Name of Log which generated the event

make new make(DateTime time, LogLevel level, Str logName, Str message, Err? err)

Constructor with all the fields

msg const Str : msg

Message text event

print Void print(OutStream out)

Print to the specified output stream.

time const DateTime : time

Timestamp of log event

toStr virtual Str toStr()

Return standard log format.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST