This section assumes you've followed our [Quickstart](🔗) section of our Getting Started guide to install and configure our SDK.

RevenueCat's SDK will log important information and errors to help you understand what is going on behind the scenes. You can enable more detailed debug logs with the `logLevel` property. You can set this immediately in your app while testing, **before you configure Purchases**.



OS_ACTIVITY_MODE

On iOS, disabling `OS_ACTIVITY_MODE` in your Xcode scheme will block debug logs from printing in the console. If you have debug logs enabled, but don't see any output, go to `Product -> Scheme -> Edit Scheme...` in Xcode and uncheck the `OS_ACTIVITY_MODE` environment variable.

# Debug UI

RevenueCat's iOS 4.22.0+ SDK provides an overlay for your iOS app that displays relevant details of the SDK configuration. The debug overlay includes each of your configured Offerings, with the option to purchase any of the products and validate access to entitlements.

RevenueCat iOS Debug UI



You can export your configuration details in JSON format to share with RevenueCat support if you need to open a support ticket.

Note: The debug UI won't compile for release builds, so you'll need to disable the behavior before archiving for release.

## Reference

Debug SectionDetails
DiagnosticsThe status of your configuration based on access to the RevenueCat API with your API key
ConfigurationSDK configuration based on your `configure` parameters
Customer InfoThe configured users’ IDs as well as entitlement details
OfferingsEach of your configured Offerings, packages, and products. Only includes Offerings with products accessible via StoreKit. See our guide on Empty Offerings if your Offerings aren’t populating

# Debug Logs

All logs from the SDK are prepended with "`[Purchases]`", you can use this string as a filter in your log output to clearly see the logs that are from _Purchases_.

## Reference

Emojis currently available on the following platforms:

  • Android version >= 4.0.2

  • iOS version >= 3.10.1

Icon(s)Log LevelDescriptionRequired Actions
🍎 ‼️Error WarnError/warning messages generated from AppleView [error handling doc](🔗) if on Error level
🤖 ‼️Error WarnError/warning messages generated from GoogleView [error handling doc](🔗) if on Error level
📦 ‼️Error WarnError/warning messages generated from AmazonView [error handling doc](🔗) if on Error level
😿 ‼️ErrorError messages generated from RevenueCatView [error handling doc](🔗)
😻DebugSuccess messages generated from RevenueCatNo action required, for informational purposes.
😻💰InfoRevenueCat received purchase informationNo action required, for informational purposes.
💰DebugMessages related to your productsNo action required, for informational purposes.
ℹ️Debug InfoMessages detailing events that occur in your app cycleNo action required, for informational purposes.
👤DebugMessages related to a user's App User IDNo action required, for informational purposes.
⚠️WarnWarning messages about implementationView log message for additional information.

Messages that have the double red exclamation marks prefix (‼️) attached provides important information regarding your implementation and may require your attention. Paying attention to the source of the message will assist you during the development process. Be sure to address these logs before shipping your app.

## Sample Output

Below are sample logs generated when setting `debugLogsEnabled = true`. Keep an eye out for any `ERROR` level logs, status codes other than `200`, or any `Invalid Product Identifiers`.



# Debugging with Hybrids

Xcode and Android Studio are our recommended IDEs for debugging. If you are a developer who works primarily with one of our hybrid SDKs and have not encountered either before, you can follow these instructions to open your app and find the debug logs to share with RevenueCat Support or your internal team.

## Xcode

[Install Xcode from the App Store.](🔗). Within the main folder of your app, you should have a folder titled `ios` that contains an Xcode project file, ending in `.xcodeproj`. Open this with Xcode from your file finder or from Xcode itself. You should be able to build and run your app in Xcode without additional editing but if you are getting an error, check that all General and Build Settings are filled out. Your debugger output will open automatically upon building within the Xcode window, and from here you can follow the instructions above.

## Android Studio

[Install Android Studio from the Google Developers website.](🔗) You can open the main folder of your app in Android Studio either from the main menu or from your file finder. There shouldn't be any additional editing needed to build and run your app, although you most likely need to set up a [virtual Android device](🔗) when running your app for the first time. The debugging output will open automatically upon building within the Android Studio window, and from here you can follow the instructions above.

## Considerations

  • You can open your Xcode project directly from Google - to do so, right click on the `ios` folder, hover over Flutter, and click "OpenIOS module in Xcode".

  • You can also run and debug your iOS project inside Android Studio itself by adding an iOS simulator and choosing it as the device before building. To do this however, you will still need Xcode installed.

  • Flutter projects using Swift may fail to show debug logs in the console if you are using Android Studio. We recommend running your Flutter iOS project using Xcode to view debug logs from the Purchases SDK.

  • If using Flutterflow or another low to no code app builder, it may not be possible for you to see debug logs. We recommend reaching out to the app builder's support team directly to help troubleshoot.

  • Expo apps for iOS can use Console.app on Mac to view debug logs, while Android projects are still recommended to use Android Studio. For specific help on debugging your React Native Expo project, feel free to reach out to [RevenueCat support](🔗).

# Next Steps

  • If you spotted any errors while debugging, make sure you're [handling errors correctly ](🔗)

  • You've verified that _Purchases_ is running correctly, time to start [making purchases in sandbox ](🔗)