Files
ontime/apps/server/src/modules/sentry.js
T
2023-04-09 19:54:19 +02:00

20 lines
419 B
JavaScript

import * as Sentry from '@sentry/node';
let shouldReport;
export function initSentry(doReport) {
shouldReport = doReport;
Sentry.init({
dsn: 'https://ceb6abdce7374857bb50b65636cbaed1@o4504288369836032.ingest.sentry.io/4504288555565056',
tracesSampleRate: 1.0,
});
}
export function reportSentryException(e) {
if (shouldReport) {
Sentry.captureException(e);
} else {
console.error(e);
}
}