Type Alias LogLevel

LogLevel:
    | "silent"
    | "error"
    | "warn"
    | "info"
    | "verbose"
    | "debug"
    | "trace"
    | "all"

Type of the strings recognised as valid level names.

Internally these strings are converted into integer values, and these numbers are used in comparisons.

Higher values mean more verbosity.