type

LogLevel

src @Serializable { simple=true }
enum class LogLevel : Enum

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

enum

constructors

fromStr

Return the LogLevel instance for the specified name.

fields

vals

List of LogLevel values indexed by ordinal

Slot Details

debug

src const static LogLevel debug := ...

err

src const static LogLevel err := ...

fromStr

src 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

src const static LogLevel info := ...

silent

src const static LogLevel silent := ...

vals

src const static LogLevel[] vals := ...

List of LogLevel values indexed by ordinal

warn

src const static LogLevel warn := ...