Interface LogOutput

Implement this API in order to receive log writes into your custom output.

interface LogOutput {
    showMeta?: boolean;
    write(e: LogEntry): void;
}

Implemented by

Properties

Methods

Properties

showMeta?: boolean

Methods