backends/drm: supress warning for disconnected connector

It just pollutes the log with useless information
This commit is contained in:
Xaver Hugl 2022-09-16 01:43:08 +02:00
parent 11aadee41c
commit 1a902b1dec

View file

@ -293,7 +293,7 @@ bool DrmConnector::updateProperties()
if (!m_edid.isValid()) {
qCWarning(KWIN_DRM) << "Couldn't parse EDID for connector" << this;
}
} else {
} else if (isConnected()) {
qCDebug(KWIN_DRM) << "Could not find edid for connector" << this;
}