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); } }