How do I enable debug logs in the Bitmovin Android Player SDK?
When encountering unexpected behaviour it can be useful to enable debug logs in the Bitmovin Player Android SDK. Also, when you file a bug report, please ensure to include debug logs.
To enable debug logs in the Bitmovin Player Android SDK, add the following line before creating any instances of the Player, Source or PlayerView:
import com.bitmovin.player.api.DebugConfig
...
DebugConfig.isLoggingEnabled = true
import com.bitmovin.player.api.DebugConfig;
...
DebugConfig.setLoggingEnabled(true);
This will enable exhaustive debug logging via the default android.util.Log API.
Note
We recommend setting this flag only when troubleshooting something or when reporting a bug to Bitmovin via the Bitmovin Dashboard.
Updated 1 day ago
What’s Next