From 9ea2813e2ac0753e0e639d13d0b8fcadb22aa66e Mon Sep 17 00:00:00 2001 From: Sebastian Hildebrandt Date: Thu, 5 Nov 2020 08:20:29 +0100 Subject: [PATCH] code cleanup, removing debug console.log() --- CHANGELOG.md | 1 + docs/history.html | 5 +++++ docs/index.html | 2 +- lib/filesystem.js | 1 - 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dde4e6d..d1bc15c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 4.28.1 | 2020-11-05 | code cleanup, removing debug console.log() | | 4.28.0 | 2020-11-04 | `graphics()` added deviceName (windows) | | 4.27.11 | 2020-10-26 | `inetChecksite()` fixed vulnerability: command injection | | 4.27.10 | 2020-10-16 | `dockerContainers()` resolved hanging issue | diff --git a/docs/history.html b/docs/history.html index 45591c7..663040a 100644 --- a/docs/history.html +++ b/docs/history.html @@ -83,6 +83,11 @@ + + 4.28.1 + 2020-11-05 + code cleanup, removing debug console.log() + 4.28.0 2020-11-04 diff --git a/docs/index.html b/docs/index.html index ddfba26..c2af33a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -168,7 +168,7 @@
systeminformation
-
Current Version: 4.28.0
+
Current Version: 4.28.1
diff --git a/lib/filesystem.js b/lib/filesystem.js index b4c538e..ed2ed10 100755 --- a/lib/filesystem.js +++ b/lib/filesystem.js @@ -43,7 +43,6 @@ function fsSize(callback) { lines.forEach(function (line) { if (line !== '') { line = line.replace(/ +/g, ' ').split(' '); - console.log(line); if (line && ((line[0].startsWith('/')) || (line[6] && line[6] === '/') || (line[0].indexOf('/') > 0))) { const fs = line[0]; const fstype = ((_linux || _freebsd || _openbsd || _netbsd) ? line[1] : (line[0].startsWith('/')) ? 'HFS' : 'NFS');