From 9168ced30f9a39b0d4117aabaedb46c7d9f0b3a1 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Thu, 1 Apr 2021 14:48:44 +0300 Subject: [PATCH] wayland: Make KWinDisplay less chatty There is no point for printing a warning if kwin cannot read the exe symlink in /proc. It may happen for processes such as polkit agent. --- src/wayland_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland_server.cpp b/src/wayland_server.cpp index 1fa012bf1d..0e017df2d9 100644 --- a/src/wayland_server.cpp +++ b/src/wayland_server.cpp @@ -143,7 +143,7 @@ public: } if (client->executablePath().isEmpty()) { - qCWarning(KWIN_CORE) << "Could not identify process with pid" << client->processId(); + qCDebug(KWIN_CORE) << "Could not identify process with pid" << client->processId(); return false; }