LogLevel enum

Describes the level of a LogEvent.

Similar to package:logger.

Inheritance

Constructors

LogLevel(int value)
const

Values

all → const LogLevel
const LogLevel(0)
verbose → const LogLevel
const LogLevel(999)
trace → const LogLevel
const LogLevel(1000)
debug → const LogLevel
const LogLevel(2000)
info → const LogLevel
const LogLevel(3000)
warning → const LogLevel
const LogLevel(4000)
error → const LogLevel
const LogLevel(5000)
wtf → const LogLevel
const LogLevel(5999)
fatal → const LogLevel
const LogLevel(6000)
off → const LogLevel
const LogLevel(10000)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<LogLevel>
A constant List of the values in this enum, in order of their declaration.