debian-mirror-gitlab/app/assets/javascripts/sentry/wrapper.js

27 lines
467 B
JavaScript
Raw Normal View History

2021-01-03 14:25:43 +05:30
// Temporarily commented out to investigate performance: https://gitlab.com/gitlab-org/gitlab/-/issues/251179
// export * from '@sentry/browser';
export function init(...args) {
return args;
}
export function setUser(...args) {
return args;
}
export function captureException(...args) {
return args;
}
export function captureMessage(...args) {
return args;
}
export function withScope(fn) {
fn({
setTag(...args) {
return args;
},
});
}