Loxer - v3.0.0
    Preparing search index...

    Interface Module

    Structure of a loggable module for the LoxerModules

    interface Module {
        devLevel: LogLevel;
        prodLevel: LogLevel;
        fullName: string;
        color: string;
        boxLayoutStyle?: BoxLayoutStyle;
    }
    Index
    devLevel: LogLevel

    The LogLevel this module logs up to in development mode.

    prodLevel: LogLevel

    The LogLevel this module logs up to in production mode.

    fullName: string

    Full name for the logged module.

    color: string

    Color used to identify this Log. Supported formats:

    • hex-string: (eg: '#ff0000' or '#f00' for red)
    • rgb-string: (eg: 'rgb(255, 0, 0)' for red)
    boxLayoutStyle?: BoxLayoutStyle

    A specific box layout for the boxes of this module.

    • this option overrides the fallback selected by the output renderer