Files
atom/src/crash-reporter-start.js
2016-07-27 14:58:23 +02:00

11 lines
253 B
JavaScript

module.exports = function (extra) {
const {crashReporter} = require('electron')
crashReporter.start({
productName: 'Atom',
companyName: 'GitHub',
submitURL: 'https://crashreporter.atom.io',
autoSubmit: false,
extra: extra
})
}