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.
- LogLevel.none: Disable logs. SDK logs will not be printed. (default)
- LogLevel.error: Print error logs only.
- LogLevel.warning: Print warning logs only.
- LogLevel.debug: Print debug logs only.
- LogLevel.info: Print info logs only.
- LogLevel.verto: Print verto messages. Incoming and outgoing verto messages are printed.
- LogLevel.all: All the SDK logs are printed.
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