backends/drm: supress warning for disconnected connector
It just pollutes the log with useless information
This commit is contained in:
parent
11aadee41c
commit
1a902b1dec
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ bool DrmConnector::updateProperties()
|
||||||
if (!m_edid.isValid()) {
|
if (!m_edid.isValid()) {
|
||||||
qCWarning(KWIN_DRM) << "Couldn't parse EDID for connector" << this;
|
qCWarning(KWIN_DRM) << "Couldn't parse EDID for connector" << this;
|
||||||
}
|
}
|
||||||
} else {
|
} else if (isConnected()) {
|
||||||
qCDebug(KWIN_DRM) << "Could not find edid for connector" << this;
|
qCDebug(KWIN_DRM) << "Could not find edid for connector" << this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue