@ac-essentials/app-util
    Preparing search index...

    Type Alias LoggerOptions

    type LoggerOptions = {
        debugInspectOptions?: InspectOptions;
        formatErrorOptions?: Except<FormatErrorOptions, "prefix">;
        initialPersistantMetadata?: LoggerMetadata;
        minLogLevel?: LoggerLogLevel | null;
    }
    Index

    Properties

    debugInspectOptions?: InspectOptions

    debug log metadata inspect options.

    formatErrorOptions?: Except<FormatErrorOptions, "prefix">

    Options for formatting errors.

    The prefix option is omitted here as it is set per-log message.

    Defaults to true if process.env.DEBUG is truthy, otherwise "top-level-only".

    initialPersistantMetadata?: LoggerMetadata

    Initial metadata to attach to all log messages from this printer.

    minLogLevel?: LoggerLogLevel | null

    Minimum log level to print. Messages with a log level less severe than this will be ignored.