Git commit 911af65242dc46fa873d9ba50026618f8d14769b by Ben Cooksley. Committed on 02/11/2022 at 07:48. Pushed by bcooksley into branch 'master'.
Banish the Frameworks Wayland Client log lines as well. It is also extremely chatty in KWin log files and represents 15% of the size of the CI run logs. CCMAIL: kde-frameworks-devel@kde.org CCMAIL: plasma-de...@kde.org M +1 -1 components/TestHandler.py https://invent.kde.org/sysadmin/ci-utilities/commit/911af65242dc46fa873d9ba50026618f8d14769b diff --git a/components/TestHandler.py b/components/TestHandler.py index e115456..3d879bd 100644 --- a/components/TestHandler.py +++ b/components/TestHandler.py @@ -65,7 +65,7 @@ def run( projectConfig, sourcesPath, buildPath, installPath, buildEnvironment ): # We want Qt to be noisy about debug output to make debugging tests easier # Some stuff is so verbose it hits the testlib maxwarnings limits though - buildEnvironment['QT_LOGGING_RULES'] = "*.debug=true;qt.text.font.db=false;kf.globalaccel.kglobalacceld=false" + buildEnvironment['QT_LOGGING_RULES'] = "*.debug=true;qt.text.font.db=false;kf.globalaccel.kglobalacceld=false;kf.wayland.client=false" # We want to force Qt to print to stderr, even on Windows buildEnvironment['QT_LOGGING_TO_CONSOLE'] = '1' buildEnvironment['QT_FORCE_STDERR_LOGGING'] = '1'