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