enum class sys::LogLevel

sys::Obj
  sys::Enum
    sys::LogLevel

@Serializable { simple=true }

Source

LogLevel provides a set of discrete levels used to customize logging. See Logging for details.

debug

const static LogLevel debug := ...

Source

err

const static LogLevel err := ...

Source

fromStr

static new fromStr(Str name, Bool checked := true)

Source

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 := ...

Source

silent

const static LogLevel silent := ...

Source

vals

const static LogLevel[] vals := ...

Source

List of LogLevel values indexed by ordinal

warn

const static LogLevel warn := ...

Source