From 78b9127589f62ee3342751d2828190162484fab8 Mon Sep 17 00:00:00 2001 From: Jiri Konecny Date: Mon, 4 Nov 2024 15:12:17 +0100 Subject: [PATCH] Remove GLib logging condition for HW logging This is not required because we solve that on level of LogHandler which is used in this solution. Related: RHEL-58834 --- pyanaconda/anaconda_logging.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pyanaconda/anaconda_logging.py b/pyanaconda/anaconda_logging.py index fe607904e1e..eef3b66e2aa 100644 --- a/pyanaconda/anaconda_logging.py +++ b/pyanaconda/anaconda_logging.py @@ -249,10 +249,6 @@ def redirect_glib_logging_to_journal(self): :param log: anaconda log handler """ - - if not self.write_to_journal: - return - # create functions that convert the messages coming # from GLib into something that fits to the anaconda logging format def log_adapter(domain, level, message, user_data):