From 04a592ff66002685e626114123459a5b8cac62db Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Wed, 10 May 2023 10:31:15 +0300 Subject: [PATCH] plugins/screencast: Remove "frame dropped" log messages They can be safely ignored, so remove them to avoid spamming the logs. --- src/plugins/screencast/screencaststream.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/screencast/screencaststream.cpp b/src/plugins/screencast/screencaststream.cpp index 9ae96bc5d4..5bd468c494 100644 --- a/src/plugins/screencast/screencaststream.cpp +++ b/src/plugins/screencast/screencaststream.cpp @@ -458,7 +458,6 @@ void ScreenCastStream::recordFrame(const QRegion &_damagedRegion) m_pendingDamages = {}; if (m_pendingBuffer) { - qCWarning(KWIN_SCREENCAST) << "Dropping a screencast frame because the compositor is slow"; return; } @@ -635,7 +634,6 @@ void ScreenCastStream::recordCursor() } if (m_pendingBuffer) { - qCWarning(KWIN_SCREENCAST) << "Dropping a screencast cursor update because the compositor is slow"; return; }