Level class abstract

Represents the level of a log record.

Those are not strict. How (and if) they work depends on the implementation of the logger.

Constructors

Level()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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

Static Methods

getName(int level) String

Constants

all → const int
Intended to enable all logging.
fatal → const int
Intended for fatal errors that end in application crash or exit.
info → const int
Intended for informational messages.
levels → const Map<int, String>
off → const int
Intended to disable logging at all.
severe → const int
Intended for severe exceptions that need to be resolved.
shout → const int
Intended for an extra debug information. Only use when debugging.
silly → const int
Intended for the super verbose mode.
verbose → const int
Intended for the verbose mode.
warning → const int
Intended for warnings.