interface FileTransportOptions {
    dirname?: string;
    eol?: string;
    filename?: string;
    format?: Format;
    handleExceptions?: boolean;
    handleRejections?: boolean;
    lazy?: boolean;
    level?: string;
    maxFiles?: number;
    maxsize?: number;
    options?: object;
    rotationFormat?: Function;
    silent?: boolean;
    stream?: WritableStream;
    tailable?: boolean;
    zippedArchive?: boolean;
    close?(): void;
    log?(info, next): any;
    logv?(info, next): any;
}

Hierarchy (view full)

Properties

dirname?: string
eol?: string
filename?: string
format?: Format
handleExceptions?: boolean
handleRejections?: boolean
lazy?: boolean
level?: string
maxFiles?: number
maxsize?: number
options?: object
rotationFormat?: Function
silent?: boolean
stream?: WritableStream
tailable?: boolean
zippedArchive?: boolean

Methods

  • Returns void

  • Parameters

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

    Returns any

  • Parameters

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

    Returns any