Files
webtorrent-desktop/crash-reporter.js
2016-04-06 05:05:26 -07:00

16 lines
304 B
JavaScript

module.exports = {
init
}
var config = require('./config')
var electron = require('electron')
function init () {
electron.crashReporter.start({
companyName: config.APP_NAME,
productName: config.APP_NAME,
submitURL: config.CRASH_REPORT_URL
})
console.log('crash reporter started')
}