interface ConsoleTransportOptions {
    consoleWarnLevels?: string[];
    debugStdout?: boolean;
    eol?: string;
    format?: Format;
    handleExceptions?: boolean;
    handleRejections?: boolean;
    level?: string;
    silent?: boolean;
    stderrLevels?: string[];
    close?(): void;
    log?(info, next): any;
    logv?(info, next): any;
}

Hierarchy (view full)

Properties

consoleWarnLevels?: string[]
debugStdout?: boolean
eol?: string
format?: Format
handleExceptions?: boolean
handleRejections?: boolean
level?: string
silent?: boolean
stderrLevels?: string[]

Methods

  • Returns void

  • Parameters

    • info: any
    • next: (() => void)
        • (): void
        • Returns void

    Returns any

  • Parameters

    • info: any
    • next: (() => void)
        • (): void
        • Returns void

    Returns any