From 857fde935a8b05c21618d7f575735b434abf2f8a Mon Sep 17 00:00:00 2001 From: Supositware Date: Mon, 1 Apr 2019 01:38:26 +0200 Subject: [PATCH] stderr go to console.error --- commands/owner/update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/owner/update.js b/commands/owner/update.js index a3c9ac1..cff3cff 100644 --- a/commands/owner/update.js +++ b/commands/owner/update.js @@ -25,7 +25,7 @@ class EvalCommand extends Command { .addField('stderr', stderr); message.channel.send({embed: Embed}); console.log(`stdout: ${stdout}`); - console.log(`stderr: ${stderr}`); + console.error(`stderr: ${stderr}`); } update(); }