diff --git a/src/main/displays/setupDisplays.js b/src/main/displays/setupDisplays.js index 6e7107ea..9142a905 100644 --- a/src/main/displays/setupDisplays.js +++ b/src/main/displays/setupDisplays.js @@ -29,7 +29,6 @@ const setupDisplays = (store, logger) => { // If we're starting the app for the first time the displays setting will be blank in the data // store. Create the display settings with our screen information and add a blank URL item. if (settingDisplaysInitial == null) { - console.log('Setting kiosk.displays'); store.set( 'kiosk.displays', _.map(screen.getAllDisplays(), item => _.extend({}, item, { connected: true, enabled: true, url: '' })), diff --git a/src/main/menu/buildShortcutsDev.js b/src/main/menu/buildShortcutsDev.js index 5e4b4d30..b4419e16 100644 --- a/src/main/menu/buildShortcutsDev.js +++ b/src/main/menu/buildShortcutsDev.js @@ -9,7 +9,6 @@ import childProcess from 'child_process'; // in this situation. const buildShortcutsMac = () => { electronLocalshortcut.register('Control+Q', () => { - console.log('will quit'); app.quit(); });