From 186181c313519b1d6b41516c4c9d654c13e8e9c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Sat, 4 Apr 2020 03:06:14 +0300 Subject: [PATCH] Commenting unnecessary console.log in datastore.js --- client/datastore.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/datastore.js b/client/datastore.js index c2f3ef2..a412d3e 100644 --- a/client/datastore.js +++ b/client/datastore.js @@ -8,7 +8,7 @@ module.exports = class { } loadData() { - console.log(""); + //console.log(""); const dataFiles = fs.readdirSync(path.join(path.dirname(__dirname), 'datastore')).filter(f => f.endsWith('.json')); for (const file of dataFiles) { try { @@ -20,9 +20,9 @@ module.exports = class { //console.log('[ERROR] Loading ' + file + ' failed'); } } - console.log(""); + //console.log(""); } - + checkEntry(id){ if(!this.map.has(id)){ this.createEntry(id);