Logging
On this page:
The Playkit SDK has internal logging library which is used for logging and debugging.
The default Log Level is: VERBOSE
.
API
In order to change the log level or to turn it off from the application code it is required to call to a static method on the PKLog
class
Example
PKLog.setGlobalLevel(PKLog.Level.off);
Log levels
The log levels match Android’s Log class.
- verbose
- debug
- info
- warn
- error
- off