SDK Debugging
This page explains the different tools to debug your APM React Native integration, bypass the 6-hour batching, and change the SDK log level for your React Native apps.
Debug Mode
iOS
Android
adb shell setprop debug.luciq.apm.app YOUR_APP_PACKAGE_NAMEadb shell setprop debug.luciq.apm.app noneLogging
import Luciq, { LogLevel } from "@luciq/react-native";
Luciq.init({
// ...
debugLogsLevel: LogLevel.debug,
})Last updated