diff --git a/commands/owner/update.js b/commands/owner/update.js index 144d357..aab1a2b 100644 --- a/commands/owner/update.js +++ b/commands/owner/update.js @@ -21,6 +21,8 @@ class EvalCommand extends Command { const { stdout, stderr } = await exec('git pull'); message.channel.send(stdout); message.channel.send(stderr); + console.log(`stdout: ${stdout}`); + console.log(`stderr: ${stderr}`); } update(); }