diff --git a/main.js b/main.js index 5e5ae3d..42819e6 100644 --- a/main.js +++ b/main.js @@ -224,7 +224,6 @@ ipcMain.on('setDevicePin', (event, arg) => { // Autoupdate logic ipcMain.on('checkForUpdates', (event, arg)=>{ - console.log('main process told to check for updates') autoUpdater.checkForUpdates(); }) diff --git a/preload.js b/preload.js index ef24bb9..4272565 100644 --- a/preload.js +++ b/preload.js @@ -177,8 +177,6 @@ ipcRenderer.on('loadSlot', (event, slot) => { // message from main process to set autoUpdate state ipcRenderer.on('setAutoUpdate',(event,autoUpdate)=>{ - console.log('setAutoUpdate called ') - console.log(autoUpdate) localStorage.setItem('autoUpdate',autoUpdate); if(autoUpdate){ ipcRenderer.send('checkForUpdates');