add shutdown/restart console messages. Fixes #89

This commit is contained in:
Abigail Gold 2019-12-08 16:02:09 -05:00
parent ea44f223c8
commit 9bbe71a67d
No known key found for this signature in database
GPG Key ID: CF88335E873C3FB4
1 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,7 @@ async def _restart_bot(ctx: commands.Context):
"""Restarts the bot."""
global exit_code
await cmn.add_react(ctx.message, cmn.emojis.good)
print(f"[**] Restarting! Requested by {ctx.author}.")
exit_code = 42 # Signals to the wrapper script that the bot needs to be restarted.
await bot.logout()
@ -55,6 +56,7 @@ async def _shutdown_bot(ctx: commands.Context):
"""Shuts down the bot."""
global exit_code
await cmn.add_react(ctx.message, cmn.emojis.good)
print(f"[**] Shutting down! Requested by {ctx.author}.")
exit_code = 0 # Signals to the wrapper script that the bot should not be restarted.
await bot.logout()