LogLevel enum

Enum to describe the log level that the SDK should use.

The log level itself is implemented as an integer. Each level has a provided priority.

Inheritance
Available extensions

Values

none → const LogLevel

Disable logs. SDK logs will not be printed.

const LogLevel(8)
error → const LogLevel

Print error logs only.

const LogLevel(6)
warning → const LogLevel

Print warning logs only.

const LogLevel(5)
debug → const LogLevel

Print debug logs only.

const LogLevel(3)
info → const LogLevel

Print info logs only.

const LogLevel(4)
verto → const LogLevel

Print verto messages. Incoming and outgoing verto messages are printed.

const LogLevel(9)
all → const LogLevel

All the SDK logs are printed.

const LogLevel(null)

Properties

hashCode int
The hash code for this object.
no setterinherited
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
priority int?
The priority of the log level.
final
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.