vibe-core ~master (2022-04-01T19:24:37Z)
Dub
Repo
LogLine
vibe
core
log
Represents a single logged line
struct
LogLine {
string
mod
;
string
func
;
string
file
;
int
line
;
LogLevel
level
;
Thread
thread
;
string
threadName
;
uint
threadID
;
Fiber
fiber
;
uint
fiberID
;
SysTime
time
;
string
text
;
}
Members
Variables
fiber
Fiber
fiber
;
Undocumented in source.
fiberID
uint
fiberID
;
Undocumented in source.
file
string
file
;
Undocumented in source.
func
string
func
;
Undocumented in source.
level
LogLevel
level
;
Undocumented in source.
line
int
line
;
Undocumented in source.
mod
string
mod
;
Undocumented in source.
text
string
text
;
Legacy field used in
Logger.log
thread
Thread
thread
;
Undocumented in source.
threadID
uint
threadID
;
Undocumented in source.
threadName
string
threadName
;
Undocumented in source.
time
SysTime
time
;
Undocumented in source.
Meta
Source
See Implementation
vibe
core
log
classes
FileLogger
HTMLLogger
Logger
SyslogLogger
enums
LogLevel
SyslogFacility
functions
deregisterLogger
getLogLevel
getLoggers
initializeLogModule
log
logCritical
logDebug
logDebugV
logDiagnostic
logError
logException
logFatal
logInfo
logTrace
logWarn
registerLogger
setLogFile
setLogFormat
setLogLevel
structs
LogLine
Represents a single logged line