Appearance
Debug Mode Configuration
The SDK includes a Debug Mode that, when enabled, provides verbose logging and diagnostics in the console. This is invaluable for troubleshooting ad loading, keyword application, and placement issues during development.
Enabling and Disabling Debug Mode You can toggle the Debug Mode state using following method.
swift
static func setDebugModeEnabled(_ enabled: Bool)The method must be called immediately after the main SDK start or initialization method. Setting the debug flag early ensures that all subsequent SDK operations, including initialization and configuration loading, are logged correctly.
TIP
Developer Tip: Hidden Debug Menu
For advanced testing, consider including a hidden debug menu in your host application that allows developers or QA to toggle setDebugModeEnabled(true) even in a production build.
This capability can significantly help our team with remote debugging, testing new ad releases, or diagnosing environment-specific issues without requiring a new app store submission. Just ensure the menu is not easily accessible to general users.

