[plasma/powerdevil/Plasma/6.7] applets/brightness/plugin: Demote kameleon supported/enabled messages to debugs
Nate Graham <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit d593e58f950c152411832734759b9a944f7f521e by Nate Graham. Committed on 30/07/2026 at 22:31. Pushed by ngraham into branch 'Plasma/6.7'. Demote kameleon supported/enabled messages to debugs These aren't warnings; nothing has gone wrong. Demote them to debugs so they aren't spamming plasma's journal log on every launch. (cherry picked from commit 54eded21972ce1166eb7de16077f917ffec854d2) Co-authored-by: Nate Graham <[email protected]> M +2 -2 applets/brightness/plugin/keyboardcolorcontrol.cpp https://invent.kde.org/plasma/powerdevil/-/commit/d593e58f950c152411832734759b9a944f7f521e diff --git a/applets/brightness/plugin/keyboardcolorcontrol.cpp b/applets/brightness/plugin/keyboardcolorcontrol.cpp index be5f408f5..b64556ffe 100644 --- a/applets/brightness/plugin/keyboardcolorcontrol.cpp +++ b/applets/brightness/plugin/keyboardcolorcontrol.cpp @@ -39,7 +39,7 @@ KeyboardColorControl::KeyboardColorControl(QObject *parent) return; } else { m_supported = supported.value(); - qCWarning(APPLETS::BRIGHTNESS) << "kameleon supported" << m_supported; + qCDebug(APPLETS::BRIGHTNESS) << "kameleon supported" << m_supported; } QDBusReply<bool> enabled = @@ -49,7 +49,7 @@ KeyboardColorControl::KeyboardColorControl(QObject *parent) return; } else { m_enabled = enabled.value(); - qCWarning(APPLETS::BRIGHTNESS) << "kameleon enabled" << m_enabled; + qCDebug(APPLETS::BRIGHTNESS) << "kameleon enabled" << m_enabled; } }