A React Native module that lets you send log events to Jam for iOS so that they can be associated with your Jam.
import ExpoJamLog, { Level } from "expo-jam-log";
ExpoJamLog.log("Hello world!", level: Level.Debug);Also supports Level.Info, Level.Warn and Level.Error.
ExpoJamLog can be configured to automatically log console events to Jam. This is configured by calling bootstrap:
ExpoJamLog.bootstrap();
console.debug("Hello world!");expo-jam-log is a native module and is not available in Expo Go.
To use this module in an Expo project:
npx expo install expo-jam-log
npx expo prebuildRefer to Using libraries that include native code for detailed installation instructions.
For bare React Native projects, you must ensure that you have installed and configured the expo package before continuing.
npm install expo-jam-logRun npx pod-install after installing the npm package.