From 4fc60686403d380c8f3d93a9dd98b9f7d6b9d6de Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sun, 18 Jul 2021 13:51:51 +0530 Subject: Added debug logs for auto-updater. [skip ci] --- src/electron/ipc-api/autoUpdate.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/electron/ipc-api') diff --git a/src/electron/ipc-api/autoUpdate.js b/src/electron/ipc-api/autoUpdate.js index 603049c4e..5305d5618 100644 --- a/src/electron/ipc-api/autoUpdate.js +++ b/src/electron/ipc-api/autoUpdate.js @@ -28,9 +28,10 @@ export default (params) => { } if (args.action === 'check') { + debug('checking for update'); autoUpdater.checkForUpdates(); } else if (args.action === 'install') { - debug('install update'); + debug('installing update'); autoUpdater.quitAndInstall(); // we need to send a quit event setTimeout(() => { -- cgit v1.2.3-54-g00ecf