Skip to content

Commit

Permalink
style: Remove console log
Browse files Browse the repository at this point in the history
We don't need to be outputting these in the production version.
  • Loading branch information
bryankennedy committed Mar 7, 2019
1 parent 488d241 commit b9fd960
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/main/displays/setupDisplays.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: '' })),
Expand Down
1 change: 0 additions & 1 deletion src/main/menu/buildShortcutsDev.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import childProcess from 'child_process';
// in this situation.
const buildShortcutsMac = () => {
electronLocalshortcut.register('Control+Q', () => {
console.log('will quit');
app.quit();
});

Expand Down

0 comments on commit b9fd960

Please sign in to comment.