LogLevel enum
Indicates the severity of a log message.
Log Levels are ordered in increasing severity. So debug
is more severe than trace
, etc.
Values
- trace → const LogLevel
-
Log level for very low severity diagnostic messages.
- debug → const LogLevel
-
Log level for low severity diagnostic messages.
- information → const LogLevel
-
Log level for informational diagnostic messages.
- warning → const LogLevel
-
Log level for diagnostic messages that indicate a non-fatal problem.
- error → const LogLevel
-
Log level for diagnostic messages that indicate a failure in the current operation.
- critical → const LogLevel
-
Log level for diagnostic messages that indicate a failure that will terminate the entire application.
- none → const LogLevel
-
The highest possible log level. Used when configuring logging to indicate that no log messages should be emitted.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - 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