Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21361aedb9d521ff87157b99183ca33c44c3698b (plain)
1
2
3
4
5
6
7
8
9
import * as Sentry from '~/sentry/sentry_browser_wrapper';

export const reportToSentry = (component, failureType) => {
  Sentry.captureException(failureType, {
    tags: {
      component,
    },
  });
};