LogLevel enum
LogLevel : Type of logger. Categorizing messages based on their severity and importance.
Values
- debug → const LogLevel
-
Used for detailed debugging information, typically intended for developers.
- info → const LogLevel
-
Used for general informational messages, providing context about application execution and events.
- warning → const LogLevel
-
Used to indicate potential issues or unexpected conditions that might require attention, but do not necessarily prevent normal operation.
- error → const LogLevel
-
Used to signal critical errors that have occurred and may have interrupted or hindered the application's functionality.
- unknown → const LogLevel
-
Used for messages that do not fall into the other categories, potentially indicating unrecognized log levels or errors.
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