Additional Settings
This page covers some advanced capabilities of the Bidapp SDK. You'll discover how to activate detailed logging and explore test mode settings.
Enable Debug Logging
The following code snippets show you how to enable debug logs:
BIDConfiguration *bidConfig = [BIDConfiguration new];
[bidConfig enableLogging];
Enable Test Mode
The following code snippets show you how to enable test mode:
BIDConfiguration *bidConfig = [BIDConfiguration new];
[bidConfig enableTestMode];
Last updated
Was this helpful?