How to use the @sentry/core.setExtra function in @sentry/core

To help you get started, we’ve selected a few @sentry/core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github getsentry / sentry-react-native / src / js / sdk.ts View on Github external
export function setDist(dist: string): void {
  setExtra("__sentry_dist", dist);
}
github getsentry / sentry-react-native / src / js / sdk.ts View on Github external
export function setRelease(release: string): void {
  setExtra("__sentry_release", release);
}