API Reference
    Preparing search index...

    Interface for a generic logger object.

    type GenericLogger = {
        debug: (...content: Anything[]) => void;
        error: (...content: Anything[]) => void;
        info?: (...content: Anything[]) => void;
        trace?: (...content: Anything[]) => void;
        warn: (...content: Anything[]) => void;
    }
    Index

    Properties

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