LogLevel enum

Used to assign severity or importance to a LogMessage

A LogWriter can also filter messages based of their LogLevel

Inheritance
Implemented types

Constructors

LogLevel(int value, String name)
const

Values

fine → const LogLevel
const LogLevel(0, 'FINE')
debug → const LogLevel
const LogLevel(1, 'DEBUG')
info → const LogLevel
const LogLevel(2, 'INFO')
warning → const LogLevel
const LogLevel(3, 'WARNING')
error → const LogLevel
const LogLevel(4, 'ERROR')

Properties

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

Methods

compareTo(LogLevel other) int
Compares this object to another object.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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

Constants

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