diff options
| -rw-r--r-- | discord/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py index 1309fa8b..399cc7b4 100644 --- a/discord/client.py +++ b/discord/client.py @@ -537,7 +537,7 @@ class Client: try: loop.run_forever() except KeyboardInterrupt: - pass + log.info('Received signal to terminate bot and event loop.') finally: task.remove_done_callback(stop_loop_on_finish) if is_windows: |