From ef2084155178c6d39a3c46072668ad578075be47 Mon Sep 17 00:00:00 2001 From: "ZetGo | Aleksej K." <73279716+ZetGoHack@users.noreply.github.com> Date: Fri, 6 Jun 2025 13:33:59 +0600 Subject: [PATCH] [+] SIGINT says 'bye!' --- heroku/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/heroku/main.py b/heroku/main.py index a42352a..63b5488 100644 --- a/heroku/main.py +++ b/heroku/main.py @@ -988,6 +988,7 @@ class Heroku: for task in asyncio.all_tasks(): if task is not asyncio.current_task(): task.cancel() + logging.info("Bye!") self.loop.stop() def main(self):