From 38cc90efd08ee802d08f7aba76a33d2da44db304 Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Tue, 20 Feb 2024 08:07:33 +0100 Subject: [PATCH] TextClient: fix logging not always showing up (#2846) --- CommonClient.py | 1 + 1 file changed, 1 insertion(+) diff --git a/CommonClient.py b/CommonClient.py index 736cf492..c75ca3fd 100644 --- a/CommonClient.py +++ b/CommonClient.py @@ -941,4 +941,5 @@ def run_as_textclient(): if __name__ == '__main__': + logging.getLogger().setLevel(logging.INFO) # force log-level to work around log level resetting to WARNING run_as_textclient()