From e8e2370ed102ae6994739b178744fcf37266b31d Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 30 Mar 2016 15:06:26 +0200 Subject: [PATCH] Log an error message to console as well --- src/auto-update-manager.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auto-update-manager.js b/src/auto-update-manager.js index 07e0db4be..a6cea92fe 100644 --- a/src/auto-update-manager.js +++ b/src/auto-update-manager.js @@ -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) }) )