From 55baab21255c2035b558d5e089b71fcbec38663c Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 6 Mar 2020 17:51:31 -0500 Subject: [PATCH] Send a console log message when restart is used --- commands/util/restart.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/util/restart.js b/commands/util/restart.js index f91538e1..3e90c8b5 100644 --- a/commands/util/restart.js +++ b/commands/util/restart.js @@ -23,6 +23,7 @@ module.exports = class RestartCommand extends Command { } run(msg, { code }) { + client.logger.info('[RESTART] Manually restarted.'); process.exit(code); return null; }