Skip to main content

SDK Logging

How to enable SDK logs and check them?

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 the Appodeal tag:

    Android Logcat 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 the Xcode console with the Appodeal tag:

    Xcode console with Appodeal tag