LogFilter enum

The output log level of the SDK.

Inheritance

Constructors

LogFilter()
const

Values

Off → const LogFilter

0: Do not output any log information.

Debug → const LogFilter

0x080f: Output all log information. Set your log filter as DEBUG if you want to get the most complete log file.

Info → const LogFilter

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

Warning → const LogFilter

0x000e: Output CRITICAL, ERROR, and WARNING level log information.

Error → const LogFilter

0x000c: Output CRITICAL and ERROR level log information.

Critical → const LogFilter

0x0008: Output 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.