LogLevel enum Null safety Logging
Levels of log messages. Higher values are more important/severe. Each level includes the lower ones.
- Implemented types
Constants
- debug → const LogLevel
-
Extremely detailed messages, only written by debug builds of CBL.
const LogLevel(0)
- error → const LogLevel
-
Messages about errors
const LogLevel(4)
- info → const LogLevel
-
Messages about ordinary behavior.
const LogLevel(2)
- none → const LogLevel
-
Disables logging entirely.
const LogLevel(5)
-
values
→ const List<
LogLevel> -
A constant List of the values in this enum, in order of their declaration.
const List<
LogLevel> - verbose → const LogLevel
-
Detailed messages about normally-unimportant stuff.
const LogLevel(1)
- warning → const LogLevel
-
Messages warning about unlikely and possibly bad stuff.
const LogLevel(3)
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