plugins/screencast: Remove "frame dropped" log messages

They can be safely ignored, so remove them to avoid spamming the logs.
This commit is contained in:
Vlad Zahorodnii 2023-05-10 10:31:15 +03:00
parent 00e536f22a
commit 04a592ff66

View file

@ -458,7 +458,6 @@ void ScreenCastStream::recordFrame(const QRegion &_damagedRegion)
m_pendingDamages = {}; m_pendingDamages = {};
if (m_pendingBuffer) { if (m_pendingBuffer) {
qCWarning(KWIN_SCREENCAST) << "Dropping a screencast frame because the compositor is slow";
return; return;
} }
@ -635,7 +634,6 @@ void ScreenCastStream::recordCursor()
} }
if (m_pendingBuffer) { if (m_pendingBuffer) {
qCWarning(KWIN_SCREENCAST) << "Dropping a screencast cursor update because the compositor is slow";
return; return;
} }