Use logger.error instead of rethrow (#3323)
parent
4d50aac4ee
commit
df7f9856bb
|
@ -8,6 +8,7 @@ import {
|
||||||
useGate as useStatsigGate,
|
useGate as useStatsigGate,
|
||||||
} from 'statsig-react-native-expo'
|
} from 'statsig-react-native-expo'
|
||||||
|
|
||||||
|
import {logger} from '#/logger'
|
||||||
import {useSession} from '../../state/session'
|
import {useSession} from '../../state/session'
|
||||||
import {LogEvents} from './events'
|
import {LogEvents} from './events'
|
||||||
|
|
||||||
|
@ -56,10 +57,7 @@ export function logEvent<E extends keyof LogEvents>(
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// A log should never interrupt the calling code, whatever happens.
|
// A log should never interrupt the calling code, whatever happens.
|
||||||
// Rethrow on a clean stack.
|
logger.error('Failed to log an event', {message: e})
|
||||||
setTimeout(() => {
|
|
||||||
throw e
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue