LogLevel class

Log Level

Log levels are a way of categorizing events that occur during the execution of a program, based on their severity or importance.

Implemented types

Constructors

LogLevel.fromJson(Map<String, dynamic> json)
factory

Properties

hashCode int
The hash code for this object.
no setteroverride
name String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
final

Methods

compareTo(LogLevel other) int
Compares this object to another object.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
toString() String
A string representation of this object.
override

Operators

operator <(LogLevel other) bool
operator <=(LogLevel other) bool
operator ==(Object other) bool
The equality operator.
override
operator >(LogLevel other) bool
operator >=(LogLevel other) bool

Constants

debug → const LogLevel
DEBUG
error → const LogLevel
ERROR
fatal → const LogLevel
FATAL
info → const LogLevel
INFO
none → const LogLevel
NONE
success → const LogLevel
SUCCESS
values → const List<LogLevel>
verbose → const LogLevel
VERBOSE
warning → const LogLevel
WARNING