2020-12-23 20:45:47 +00:00
|
|
|
const { init } = String(process.type) === 'main' ? require('@sentry/electron/dist/main') : require('@sentry/electron/dist/renderer')
|
2020-02-05 12:16:31 +00:00
|
|
|
import * as isDev from 'electron-is-dev'
|
|
|
|
|
|
|
|
|
|
|
|
const SENTRY_DSN = 'https://4717a0a7ee0b4429bd3a0f06c3d7eec3@sentry.io/181876'
|
2020-12-24 13:03:14 +00:00
|
|
|
let release = null
|
2020-02-05 12:16:31 +00:00
|
|
|
try {
|
|
|
|
release = require('electron').app.getVersion()
|
|
|
|
} catch {
|
|
|
|
release = require('electron').remote.app.getVersion()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isDev) {
|
|
|
|
init({
|
|
|
|
dsn: SENTRY_DSN,
|
|
|
|
release,
|
|
|
|
integrations (integrations) {
|
|
|
|
return integrations.filter(integration => integration.name !== 'Breadcrumbs')
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|