ts-lambda-api - v2.5.2
    Preparing search index...

    Interface Logger

    Represents a logger object that is available in HandlerExecutionContext throughout the middleware stack.

    interface Logger {
        debug: (...content: any[]) => void;
        error: (...content: any[]) => void;
        info: (...content: any[]) => void;
        trace?: (...content: any[]) => void;
        warn: (...content: any[]) => void;
    }
    Index

    Properties

    debug: (...content: any[]) => void
    error: (...content: any[]) => void
    info: (...content: any[]) => void
    trace?: (...content: any[]) => void
    warn: (...content: any[]) => void