From b9c4b8189e289e07503db55f099ec0762f5f86dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Thu, 11 Dec 2025 20:09:03 +0100 Subject: [PATCH] Enable logging in tests --- qubes/tests/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qubes/tests/__init__.py b/qubes/tests/__init__.py index db69003e3..273b751b1 100644 --- a/qubes/tests/__init__.py +++ b/qubes/tests/__init__.py @@ -847,6 +847,7 @@ def setUp(self): logging.Formatter("%(name)s[%(process)d]: %(message)s") ) logging.root.addHandler(ha_syslog) + logging.root.setLevel(logging.INFO) self.log.critical("starting")