diff --git a/main/log.js b/main/log.js index 08bc7b12..e8a05924 100644 --- a/main/log.js +++ b/main/log.js @@ -9,17 +9,11 @@ module.exports.error = error */ var electron = require('electron') - -var config = require('../config') var windows = require('./windows') var app = electron.app function log (...args) { - if (!config.IS_PRODUCTION) { - // In development, also log to the console - console.log(...args) - } if (app.ipcReady) { windows.main.send('log', ...args) } else {