LogLevel enum

Разрешённый уровень логирования SDK в журнал.

В журнал попадают любые сообщения выше заданного уровня.

Inheritance
Available extensions

Values

verbose → const LogLevel

Чрезмерно подробные вспомогательные сообщения.

const LogLevel(0)
info → const LogLevel

Информационные сообщения.

const LogLevel(1)
warning → const LogLevel

Предупреждения.

const LogLevel(2)
error → const LogLevel

Ошибки в использовании или окружении.

const LogLevel(3)
fault → const LogLevel

Сообщения о событиях, свидетельствующих об ошибке программирования.

const LogLevel(4)
disabled → const LogLevel

Отсутствие каких-либо сообщений.

const LogLevel(5)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
rawValue int
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

Static Methods

getByValue(int value) LogLevel

Constants

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