mirror of https://github.com/tooot-app/app
18 lines
454 B
TypeScript
18 lines
454 B
TypeScript
import * as Updates from 'expo-updates'
|
|
import { Constants } from 'react-native-unimodules'
|
|
import * as Sentry from 'sentry-expo'
|
|
import log from './log'
|
|
|
|
const sentry = () => {
|
|
log('log', 'Sentry', 'initializing')
|
|
Sentry.init({
|
|
dsn: Constants.manifest?.extra?.sentryDSN,
|
|
enableInExpoDevelopment: false,
|
|
debug:
|
|
__DEV__ ||
|
|
['development'].some(channel => Updates.releaseChannel.includes(channel))
|
|
})
|
|
}
|
|
|
|
export default sentry
|