Temporarily remove Bitdrift (#7173)

* Temporarily remove Bitdrift

* Rm plugin
This commit is contained in:
dan
2024-12-19 01:16:32 +00:00
committed by GitHub
parent e2dfe3f438
commit c2ca84c636
5 changed files with 72 additions and 31 deletions
+4 -2
View File
@@ -5,7 +5,8 @@ import {sha256} from 'js-sha256'
import {Statsig, StatsigProvider} from 'statsig-react-native-expo'
import {BUNDLE_DATE, BUNDLE_IDENTIFIER, IS_TESTFLIGHT} from '#/lib/app-info'
import * as bitdrift from '#/lib/bitdrift'
// TODO: Reenable when the build issue is fixed.
// import * as bitdrift from '#/lib/bitdrift'
import {logger} from '#/logger'
import {isWeb} from '#/platform/detection'
import * as persisted from '#/state/persisted'
@@ -107,7 +108,8 @@ export function logEvent<E extends keyof LogEvents>(
console.groupCollapsed(eventName)
console.log(fullMetadata)
console.groupEnd()
bitdrift.info(eventName, fullMetadata)
// TODO: Reenable when the build issue is fixed.
// bitdrift.info(eventName, fullMetadata)
} catch (e) {
// A log should never interrupt the calling code, whatever happens.
logger.error('Failed to log an event', {message: e})