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: 8a4f28404c61acf837bf5013f2cb494348051617 (plain)
1
2
3
4
5
6
7
8
9
import * as Sentry from '@sentry/browser';

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