LogLevel enum Null safety
The output log level of the SDK.
Constants
- Error → const LogLevel
-
Output logs of the
Fatal
andError
level.@JsonValue(0x0004)const LogLevel(3)
- Fatal → const LogLevel
-
Output logs of the
Fatal
level.@JsonValue(0x0008)const LogLevel(4)
- Info → const LogLevel
-
(Default) Output logs of the
Fatal
,Error
,Warn
, andInfo
level. We recommend setting your log filter as this level.@JsonValue(0x0001)const LogLevel(1)
- None → const LogLevel
-
Do not output any log.
@JsonValue(0x0000)const LogLevel(0)
-
values
→ const List<
LogLevel> -
A constant List of the values in this enum, in order of their declaration.
const List<
LogLevel> - Warn → const LogLevel
-
Output logs of the
Fatal
,Error
, andWarn
level.@JsonValue(0x0002)const LogLevel(2)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
A string representation of this object. [...]
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited