update sentry.ts

This commit is contained in:
Avinash Lingaloo
2022-09-16 23:38:54 +04:00
parent 797fbe030e
commit 5b2ac6dd11

View File

@@ -19,16 +19,15 @@ export const LOGGER_NATIVE = 'native';
let Sentry: any; let Sentry: any;
export function initializeSentry() { export function initializeSentry() {
//fixme: remove all hardcoded/commmented lines if (!Config.SentryEnabled) {
// if (!Config.SentryEnabled) { return;
// return; }
// }
if (!Sentry) { if (!Sentry) {
Sentry = require('@sentry/react-native'); Sentry = require('@sentry/react-native');
} }
const dsn = 'https://8166acfeeced43de98bc11f217d871c5@o1347733.ingest.sentry.io/6734065'; //getDsn(); const dsn = getDsn();
if (!dsn) { if (!dsn) {
logWarning('Sentry is enabled, but not configured on this platform'); logWarning('Sentry is enabled, but not configured on this platform');
@@ -36,8 +35,8 @@ export function initializeSentry() {
} }
Sentry.init({ Sentry.init({
dsn: 'https://8166acfeeced43de98bc11f217d871c5@o1347733.ingest.sentry.io/6734065', dsn,
tracesSampleRate: 1.0, //fixme: lower to about 0.2 for production tracesSampleRate: 0.2,
integrations: [ integrations: [
new Sentry.ReactNativeTracing({ new Sentry.ReactNativeTracing({
@@ -45,12 +44,9 @@ export function initializeSentry() {
routingInstrumentation: new Sentry.ReactNativeNavigationInstrumentation( routingInstrumentation: new Sentry.ReactNativeNavigationInstrumentation(
Navigation, Navigation,
), ),
// ...
}), }),
], ],
...Config.SentryOptions,
// ...Config.SentryOptions,
}); });
} }