LogLevel enum
This enum exposes available log levels for the SDK.
Values
- verbose → const LogLevel
-
Low Level Information that's important for debugging a lot of information this logs don't go into release builds
const LogLevel('VERBOSE')
- debug → const LogLevel
-
Low Level Information that's important for debugging containing less info than verbose this logs don't go into release builds
const LogLevel('DEBUG')
- info → const LogLevel
-
Logs High Level Information of anything that went as expected in the Execution of the SDK initialization, normal lifecycle of the formats, and other normal stuff
const LogLevel('INFO')
- warn → const LogLevel
-
Logs High Level Information of Something went wrong but the SDK is able to continue showing ads and generate some revenue but is on suboptimal conditions
const LogLevel('WARN')
- error → const LogLevel
-
Logs High Level Information when the SDK is not able to continue showing ads nor generate revenue
const LogLevel('ERROR')
- assertion → const LogLevel
-
Catastrophic, horrible, stressful, and not funny at tall succession of events we are very sorry of these and we ask you to please contact us with this log under your arm we promise this is fixable though <3
const LogLevel('ASSERT')
Properties
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