Loxer - v3.0.0
    Preparing search index...

    Type Alias LogLevel

    LogLevel: "error" | "warn" | "info" | "debug"
    level meaning
    'error' something failed
    'warn' something is suspicious but recoverable
    'info' the ordinary log
    'debug' detail that is only interesting while debugging

    Every log carries one, and a module says how far down that list it wants to see: a module with devLevel: 'info' shows 'error', 'warn' and 'info' logs and stops before 'debug'.

    Errors are output whatever the module allows, so a module set to 'error' reports its errors and nothing else. Use LoxerConfig.disabled or LoxerConfig.disabledInProductionMode to switch logging off altogether.