Telemetry: fix error logging bugs, [object Object] and [object HTMLMediaElement]

This commit is contained in:
DC
2016-08-25 05:56:46 -07:00
parent 2c179c7465
commit f488ef7597
3 changed files with 42 additions and 13 deletions

View File

@@ -78,8 +78,8 @@ function init () {
// Report uncaught exceptions
process.on('uncaughtException', (err) => {
console.error(err)
var errJSON = {message: err.message, stack: err.stack}
windows.main.dispatch('uncaughtError', 'main', errJSON)
var error = {message: err.message, stack: err.stack}
windows.main.dispatch('uncaughtError', 'main', error)
})
})