LogFilter enum

Output log filter level.

Inheritance

Constructors

LogFilter()
const

Values

Off → const LogFilter

Do not output any log information.

Debug → const LogFilter

Output all log information. Set your log filter as debug if you want to get the most complete log file.

Info → const LogFilter

Output CRITICAL, ERROR, WARNING, and INFO level log information. We recommend setting your log filter as this level.

Warning → const LogFilter

Outputs CRITICAL, ERROR, and WARNING level log information.

Error → const LogFilter

Outputs CRITICAL and ERROR level log information.

Critical → const LogFilter

Outputs CRITICAL level log information.

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<LogFilter>
A constant List of the values in this enum, in order of their declaration.