The library is intensively logging into the console via WMTLogger.
WMTLogger calls internally the android.util.Log class.
You can limit the amount of logged information via the verboseLevel static property.
| Level | Description |
|---|---|
OFF |
Silences all messages. |
ERROR |
Only errors will be printed to the console. |
WARNING (default) |
Errors and warnings will be printed to the console. |
DEBUG |
All messages will be printed to the console. |
Networking logs are managed by the networking library and it's logger
The WMTLogger class offers a static logListener property. If you provide a listener, all logs will also be passed to it (the library always logs into the Android default log).
Log listener comes in handy when you want to log into a file or some online service.