Logging
The library is intensively logging into the console via Logger
.
Possible log levels:
DEBUG
- Debug logging that outputs more granular data, use this only during developmentINFO
- prints info logs + logs for warning level produced by the library (default level)WARNING
- prints warnings and errorsERROR
- prints errors onlyOFF
- logging is turned off
You can set the log level by Logger.verboseLevel = Logger.VerboseLevel.OFF
.
Logger
calls internally the android.util.Log
class.
Last updated on Mar 01, 2024 (19:16)
Edit on Github
Send Feedback