diff --git a/src/core/renderloop.cpp b/src/core/renderloop.cpp index 86cfbef109..d858d0c54e 100644 --- a/src/core/renderloop.cpp +++ b/src/core/renderloop.cpp @@ -128,10 +128,10 @@ void RenderLoopPrivate::notifyFrameCompleted(std::chrono::nanoseconds timestamp) if (lastPresentationTimestamp <= timestamp) { lastPresentationTimestamp = timestamp; } else { - qCWarning(KWIN_CORE, - "Got invalid presentation timestamp: %lld (current %lld)", - static_cast(timestamp.count()), - static_cast(lastPresentationTimestamp.count())); + qCDebug(KWIN_CORE, + "Got invalid presentation timestamp: %lld (current %lld)", + static_cast(timestamp.count()), + static_cast(lastPresentationTimestamp.count())); lastPresentationTimestamp = std::chrono::steady_clock::now().time_since_epoch(); }