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() }