Log an error message to console as well

This commit is contained in:
Antonio Scandurra 2016-03-30 15:06:26 +02:00
parent 2d5e697016
commit e8e2370ed1

View File

@ -22,6 +22,7 @@ export default class AutoUpdateManager {
this.emitter.emit('update-not-available')
}),
applicationDelegate.onUpdateError((message) => {
console.error(message)
this.emitter.emit('update-error', message)
})
)