enum class sys::LogLevel
sys::Obj sys::Enum sys::LogLevel
@Serializable { simple=true }
LogLevel provides a set of discrete levels used to customize logging. See Logging for details.
- debug
-
const static LogLevel debug := ...
- err
-
const static LogLevel err := ...
- fromStr
-
static new fromStr(Str name, Bool checked := true)
Return the LogLevel instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.
- info
-
const static LogLevel info := ...
- silent
-
const static LogLevel silent := ...
- vals
-
const static LogLevel[] vals := ...
List of LogLevel values indexed by ordinal
- warn
-
const static LogLevel warn := ...