Interface IOutputLogInfo

The type of logInfo in TOutputFn function, accessed as this.logInfo inside that function call

interface IOutputLogInfo {
    lineNumber?: number;
    logLevelMethod?: string;
    logLevelString?: string;
    logLevelNum?: number;
    relativePath?: string;
    absolutePath?: string;
    resolvedName?: string;
    resolvedCallName?: string;
    loggerName?: string;
    date?: string;
    time?: string;
}

Properties

lineNumber?: number
logLevelMethod?: string
logLevelString?: string
logLevelNum?: number
relativePath?: string
absolutePath?: string
resolvedName?: string
resolvedCallName?: string
loggerName?: string
date?: string
time?: string