Reenable bitdrift (#7405)

This commit is contained in:
Snow Pettersen
2025-01-21 13:44:31 -07:00
committed by GitHub
parent 8e00f044fe
commit 5f9f81f86c
5 changed files with 133 additions and 30 deletions
+2 -4
View File
@@ -5,8 +5,7 @@ import {sha256} from 'js-sha256'
import {Statsig, StatsigProvider} from 'statsig-react-native-expo'
import {BUNDLE_DATE, BUNDLE_IDENTIFIER, IS_TESTFLIGHT} from '#/lib/app-info'
// TODO: Reenable when the build issue is fixed.
// import * as bitdrift from '#/lib/bitdrift'
import * as bitdrift from '#/lib/bitdrift'
import {logger} from '#/logger'
import {isWeb} from '#/platform/detection'
import * as persisted from '#/state/persisted'
@@ -108,8 +107,7 @@ export function logEvent<E extends keyof LogEvents>(
console.groupCollapsed(eventName)
console.log(fullMetadata)
console.groupEnd()
// TODO: Reenable when the build issue is fixed.
// bitdrift.info(eventName, fullMetadata)
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})