From f0142391ee0429954da353c97bdf875be7e15e84 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Mon, 11 Jan 2016 15:22:20 -0800 Subject: [PATCH] Remove extraneous log message and comments --- console/src/main.js | 1 - console/src/modules/config.js | 2 -- 2 files changed, 3 deletions(-) diff --git a/console/src/main.js b/console/src/main.js index c4142d44a8..c45f6e91c0 100644 --- a/console/src/main.js +++ b/console/src/main.js @@ -291,7 +291,6 @@ const httpStatusPort = 60332; function maybeShowSplash() { var suppressSplash = userConfig.get('doNotShowSplash', false); - console.log("Suppress?", suppressSplash) if (!suppressSplash) { var window = new BrowserWindow({ diff --git a/console/src/modules/config.js b/console/src/modules/config.js index 663a34e66b..df44dcfafe 100644 --- a/console/src/modules/config.js +++ b/console/src/modules/config.js @@ -6,7 +6,6 @@ function Config() { } Config.prototype = { load: function(filePath) { - // open file var rawData = null; try { rawData = fs.readFileSync(filePath); @@ -15,7 +14,6 @@ Config.prototype = { } var configData = {}; - // read file and json parse try { if (rawData) { configData = JSON.parse(rawData);