From 689da3239ae94640d3a0db6ef343de025fbcaff5 Mon Sep 17 00:00:00 2001 From: Ralph Wetzel Date: Thu, 30 Nov 2023 21:57:40 +0100 Subject: [PATCH] Remove some leftover logs to console --- monitor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monitor.js b/monitor.js index d119755..6e708b4 100755 --- a/monitor.js +++ b/monitor.js @@ -25,7 +25,7 @@ function scan_for_require_path(req_path) { if (process.env.NODE_RED_HOME) { found = path.join(process.env.NODE_RED_HOME, "..", req_path); - console.log("@f", found); + // console.log("@f", found); if (fs.existsSync(found)) { return found; } @@ -64,7 +64,7 @@ function scan_for_require_path(req_path) { } } - console.log(found); + // console.log(found); return found; }