From 9ece541e528cbd8795ddecd274868f0b9d1beee1 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Wed, 12 Apr 2023 20:06:19 +0200 Subject: [PATCH] Fixed log message #301 --- kdb-bot/src/bot_api/api_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdb-bot/src/bot_api/api_thread.py b/kdb-bot/src/bot_api/api_thread.py index 516d786d..02a4c41b 100644 --- a/kdb-bot/src/bot_api/api_thread.py +++ b/kdb-bot/src/bot_api/api_thread.py @@ -23,4 +23,4 @@ class ApiThread(threading.Thread): self._logger.trace(__name__, f"Try to stop {type(self._api).__name__}") self._api.stop() except Exception as e: - self._logger.error(__name__, "Start stop", e) + self._logger.error(__name__, "Stop failed", e)