Interface InternalOptions

The internal options of the logger.

interface InternalOptions {
    debug: boolean;
    palette: Palette;
    scope: null | string;
}

Properties

Properties

debug: boolean

If the debug messages will be printed.

palette: Palette

The color palette that specifies which colour to use for the various log types.

scope: null | string

The scope of the logger, printed as {SCOPE} before the [TYPE] tag.

""