LogLevel enum

The output log level of the SDK.

Inheritance

Constructors

LogLevel()
const

Values

None → const LogLevel

0: Do not output any log information.

Info → const LogLevel

0x0001: (Default) Output FATAL, ERROR, WARN, and INFO level log information. We recommend setting your log filter as this level.

Warn → const LogLevel

0x0002: Output FATAL, ERROR, and WARN level log information.

Error → const LogLevel

0x0004: Output FATAL and ERROR level log information.

Fatal → const LogLevel

0x0008: Output FATAL 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<LogLevel>
A constant List of the values in this enum, in order of their declaration.