From 0538747bce5cbda8bb9c6c01b3daf3dc0b22c822 Mon Sep 17 00:00:00 2001 From: "Erik K. Nyquist" Date: Mon, 30 Jan 2023 02:05:36 +0000 Subject: [PATCH] Remove debug log message --- nedry/builtin_plugins/trivia.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nedry/builtin_plugins/trivia.py b/nedry/builtin_plugins/trivia.py index 57082a4..c1404d5 100644 --- a/nedry/builtin_plugins/trivia.py +++ b/nedry/builtin_plugins/trivia.py @@ -52,7 +52,6 @@ def start_thread(self): def stop_thread(self): if self.thread is not None: - logger.info(f"stopping {self.thread}") self.stop_event.set() self.thread.join() self.thread = None