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);