LogLevel enum

The enum class that represents log level.

Inheritance

Constructors

LogLevel()
const

Values

trace → const LogLevel

A log level describing events showing step by step execution of your code that can be ignored during the standard operation, but may be useful during extended debugging sessions.

debug → const LogLevel

A log level used for events considered to be useful during software debugging when more granular information is needed.

info → const LogLevel

A log level used for an event happened, and the event is purely informative and can be ignored during normal operations.

warn → const LogLevel

Unexpected behavior happened inside the application, but it is continuing its work and the key business features are operating as expected.

error → const LogLevel

One or more functionalities are not working, preventing some functionalities from working correctly.

fatal → const LogLevel

One or more key business functionalities are not working and the whole system doesn’t fulfill the business functionalities.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
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

Constants

values → const List<LogLevel>
A constant List of the values in this enum, in order of their declaration.