LogLevel enum

Represents the verbosity level of the SDK’s internal logger.

Inheritance
Available extensions

Values

off → const LogLevel

Disable all logging.

const LogLevel(Config.LOG_LEVEL_OFF)
error → const LogLevel

Log only error-level messages.

const LogLevel(Config.LOG_LEVEL_ERROR)
warning → const LogLevel

Log warnings and errors.

const LogLevel(Config.LOG_LEVEL_WARNING)
info → const LogLevel

Log informational, warning, and error messages.

const LogLevel(Config.LOG_LEVEL_INFO)
debug → const LogLevel

Log debug, info, warning, and error messages.

const LogLevel(Config.LOG_LEVEL_DEBUG)
verbose → const LogLevel

Log everything including verbose diagnostic output.

const LogLevel(Config.LOG_LEVEL_VERBOSE)

Properties

hashCode int
The hash code for this object.
no setterinherited
id int
final
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
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

Static Methods

from(dynamic v) LogLevel
Convert from legacy integer or string to LogLevel.

Constants

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