From 5f306ae93d148941d0497f38a587469764e45fb8 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Fri, 10 Sep 2021 17:59:52 +0200 Subject: [PATCH] Improve debug, no need to show a number when we can show the value --- src/abstract_wayland_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abstract_wayland_output.cpp b/src/abstract_wayland_output.cpp index 196439b84b..373d925033 100644 --- a/src/abstract_wayland_output.cpp +++ b/src/abstract_wayland_output.cpp @@ -167,7 +167,7 @@ void AbstractWaylandOutput::applyChanges(const KWaylandServer::OutputChangeSetV2 emitModeChanged = true; } if (changeSet->transformChanged()) { - qCDebug(KWIN_CORE) << "Server setting transform: " << (int)(changeSet->transform()); + qCDebug(KWIN_CORE) << "Server setting transform: " << changeSet->transform(); auto transform = outputDeviceTransformToKWinTransform(changeSet->transform()); updateTransform(transform); emitModeChanged = true;