Package: effect
Module: LogLevel
Log levels that represent actual message severities, excluding the All and
None sentinel levels.
When to use
Use when typing emitted log message severities, such as explicit log calls,
current log level references, or error-report severity annotations, where
All and None are not valid values.
See
LogLevel for the wider log-level type that also accepts the
All and None sentinel levelsvalues for the runtime list of all accepted LogLevel values,
including sentinelsSignature
type Severity = "Fatal" | "Error" | "Warn" | "Info" | "Debug" | "Trace"
Since v4.0.0