3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2025-10-29 11:22:47 +00:00

monitor: remove spammy trace log

This commit is contained in:
Vaxry 2025-10-21 19:10:06 +01:00
parent 46dab01bcc
commit 4926332c37
No known key found for this signature in database
GPG Key ID: 665806380871D640

View File

@ -1781,10 +1781,8 @@ uint16_t CMonitor::isDSBlocked(bool full) {
bool CMonitor::attemptDirectScanout() {
const auto blockedReason = isDSBlocked();
if (blockedReason) {
Debug::log(TRACE, "attemptDirectScanout: blocked by {}", blockedReason);
if (blockedReason)
return false;
}
const auto PCANDIDATE = m_solitaryClient.lock();
const auto PSURFACE = PCANDIDATE->getSolitaryResource();