mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-19 06:31:54 -05:00
Merge pull request #101 from classabbyamp/iss96
add shutdown/restart console messages
This commit is contained in:
commit
3cd1a9d13a
2
main.py
2
main.py
@ -45,6 +45,7 @@ async def _restart_bot(ctx: commands.Context):
|
|||||||
"""Restarts the bot."""
|
"""Restarts the bot."""
|
||||||
global exit_code
|
global exit_code
|
||||||
await cmn.add_react(ctx.message, cmn.emojis.good)
|
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.
|
exit_code = 42 # Signals to the wrapper script that the bot needs to be restarted.
|
||||||
await bot.logout()
|
await bot.logout()
|
||||||
|
|
||||||
@ -55,6 +56,7 @@ async def _shutdown_bot(ctx: commands.Context):
|
|||||||
"""Shuts down the bot."""
|
"""Shuts down the bot."""
|
||||||
global exit_code
|
global exit_code
|
||||||
await cmn.add_react(ctx.message, cmn.emojis.good)
|
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.
|
exit_code = 0 # Signals to the wrapper script that the bot should not be restarted.
|
||||||
await bot.logout()
|
await bot.logout()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user