Enumerations
LogLevel
How much detail the SDK logs.
Each level includes everything more severe than itself, so Info also records warnings and errors. The SDK maps
these onto the underlying iOS and Android log priorities, which differ between the two platforms.
Enumeration members
| Name | Value | Description |
|---|---|---|
Debug | "DEBUG" | The above, plus detail intended for diagnosing a problem. |
Error | "ERROR" | Failures only. |
Info | "INFO" | The above, plus high-level progress through an operation. A reasonable production default. |
Off | "OFF" | Log nothing. |
Verbose | "VERBOSE" | Everything the SDK can log. Intended for development, and noisy enough to affect performance. |
Warn | "WARN" | Errors, plus conditions that did not fail but need attention. |
Referenced by
A property of LoggerConfiguration.
How would you rate this page?