igcv3 - v1.1.0
    Preparing search index...

    Interface ConfigLogging

    Logger configuration options

    interface ConfigLogging {
        level: "debug" | "info" | "warn" | "error" | "silent";
        showIcons: boolean;
        showTimestamp: boolean;
        timestampFormat: string;
        showPid: boolean;
        colors?: {
            debug?: string;
            info?: string;
            warn?: string;
            error?: string;
            success?: string;
        };
        icons?: {
            debug?: string;
            info?: string;
            warn?: string;
            error?: string;
            success?: string;
        };
    }
    Index

    Properties

    level: "debug" | "info" | "warn" | "error" | "silent"

    Minimum log level to display

    showIcons: boolean

    Show icons before log messages

    showTimestamp: boolean

    Show timestamp in log messages

    timestampFormat: string

    Timestamp format (date-fns format)

    showPid: boolean

    Show process ID in log messages

    colors?: {
        debug?: string;
        info?: string;
        warn?: string;
        error?: string;
        success?: string;
    }

    Custom colors for log levels (chalk color names)

    icons?: {
        debug?: string;
        info?: string;
        warn?: string;
        error?: string;
        success?: string;
    }

    Custom icons for log levels