Skip to main content

SDK logging

How to enable SDK logs and check them?

Written by Tanya Moroz


SDK logging allows you to check integration for errors, crashes, and get some SDK information. In order to see SDK logs you need:

Android 

  1. Enable SDK logging with this code: Appodeal.setLogLevel(Log.LogLevel.verbose);

  2. Configure Logcat to see logs from your device https://developer.android.com/studio/debug/am-logcat

  3. Now you can see logs from Appodeal SDK with Appodeal tag:

iOS

  1. Enable SDK logging:  

Objective-C: [Appodeal setLogLevel:APDLogLevelVerbose];

Swift: Appodeal.setLogLevel(APDLogLevel.verbose)

    2. Run app in Xcode and check Xcode console with Appodeal tag: 

Did this answer your question?