[plasma/powerdevil] 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 54eded21972ce1166eb7de16077f917ffec854d2 by Nate Graham.
Committed on 30/07/2026 at 19:32.
Pushed by ngraham into branch 'master'.
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.
M +2 -2 applets/brightness/plugin/keyboardcolorcontrol.cpp
https://invent.kde.org/plasma/powerdevil/-/commit/54eded21972ce1166eb7de16077f917ffec854d2
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;
}
}