Severity of a log entry.
Constants
- critical → LogLevel
-
A critical problem; the program will attempt to quit immediately.
const LogLevel(4)
- error → LogLevel
-
A certain problem but the program will attempt to continue.
const LogLevel(3)
- info → LogLevel
-
Informational messages that do not indicate a problem.
const LogLevel(1)
- trace → LogLevel
-
Messages used to supplement the higher-level messages with more details.
This will likely produce a lot of output.
const LogLevel(0)
- values → List<LogLevel>
-
A constant List of the values in this enum, in order of their declaration.
const List<LogLevel>
- warning → LogLevel
-
A potential problem.
const LogLevel(2)
Properties
- index → int
-
read-only
- hashCode → int
-
Get a hash code for this object.
read-only, inherited - runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Operators
-
operator ==(
other) → bool -
The equality operator.
inherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited -
toString(
) → String -
Returns a string representation of this object.
inherited