Interface ILogWriter

Source
interface ILogWriter {
    write(entry: LogEntry): void;
}

Methods§

Source§

write(entry: LogEntry): void

Writes a log entry to the destination. This method is called by the logger. It can be overridden in derived classes to customize the log destination.