From 2ec02130b016ad4e3ae5bfa3f49ac460924026a6 Mon Sep 17 00:00:00 2001 From: hgw Date: Mon, 2 Oct 2023 02:11:27 +0000 Subject: [PATCH] remove all done log entries, redundant --- commands/feed-list.js | 1 - commands/feed-predef.js | 1 - commands/feed-preset.js | 1 - commands/help.js | 1 - commands/options.js | 1 - 5 files changed, 5 deletions(-) diff --git a/commands/feed-list.js b/commands/feed-list.js index 412f343..936ea81 100644 --- a/commands/feed-list.js +++ b/commands/feed-list.js @@ -27,7 +27,6 @@ function consoleLog(log) { async function sendUpstream(content) { var output = content.join("\n") - consoleLog('[feed-list] All done.') parentPort.postMessage(output); process.exit() } diff --git a/commands/feed-predef.js b/commands/feed-predef.js index e60fec5..fa954c7 100644 --- a/commands/feed-predef.js +++ b/commands/feed-predef.js @@ -25,7 +25,6 @@ function consoleLog(log) { async function sendUpstream(content) { var output = content.join("\n") - consoleLog('[feed-predef] All done.') parentPort.postMessage(output); process.exit() } diff --git a/commands/feed-preset.js b/commands/feed-preset.js index 947a21f..5b91ba5 100644 --- a/commands/feed-preset.js +++ b/commands/feed-preset.js @@ -25,7 +25,6 @@ function consoleLog(log) { async function sendUpstream(content) { var output = content.join("\n") - consoleLog('[feed-preset] All done.') parentPort.postMessage(output); process.exit() } diff --git a/commands/help.js b/commands/help.js index 2c8ac40..acd8532 100644 --- a/commands/help.js +++ b/commands/help.js @@ -18,7 +18,6 @@ function consoleLog(log) { async function sendUpstream(content) { var output = content.join("\n") - consoleLog('[help] All done.') parentPort.postMessage(output); process.exit() } diff --git a/commands/options.js b/commands/options.js index df8c7f5..e484dd5 100644 --- a/commands/options.js +++ b/commands/options.js @@ -27,7 +27,6 @@ function consoleLog(log) { } async function sendUpstream(content) { - consoleLog('[options] All done.') parentPort.postMessage(content); process.exit() }