iggs-utils - v2.4.0
    Preparing search index...

    Interface LogWriter

    interface LogWriter {
        debug: (...msg: Loggable[]) => void;
        error: (...msg: Loggable[]) => void;
        fatal: (...msg: Loggable[]) => void;
        info: (...msg: Loggable[]) => void;
        trace: (...msg: Loggable[]) => void;
        warn: (...msg: Loggable[]) => void;
    }

    Implemented by

    Index

    Properties

    debug: (...msg: Loggable[]) => void

    Designates fine-grained informational events that are most useful to debug an application.

    error: (...msg: Loggable[]) => void

    Designates error events that might still allow the application to continue running.

    fatal: (...msg: Loggable[]) => void

    Designates very severe error events that will presumably lead the application to abort.

    info: (...msg: Loggable[]) => void

    Designates informational messages that highlight the progress of the application at coarse-grained level.

    trace: (...msg: Loggable[]) => void

    Designates finer-grained informational events than the DEBUG.

    warn: (...msg: Loggable[]) => void

    Designates potentially harmful situations.