aboutsummaryrefslogtreecommitdiff
path: root/libcontextsubscriber/src/provider.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcontextsubscriber/src/provider.cpp')
-rw-r--r--libcontextsubscriber/src/provider.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libcontextsubscriber/src/provider.cpp b/libcontextsubscriber/src/provider.cpp
index 8826575c..b889045b 100644
--- a/libcontextsubscriber/src/provider.cpp
+++ b/libcontextsubscriber/src/provider.cpp
@@ -383,7 +383,9 @@ void Provider::onPluginValueChanged(QString key, QVariant newValue)
Q_EMIT valueChanged(key);
}
else
- contextWarning() << "Received a property not subscribed to:" << key;
+ // Plugins are allowed to send values which are not subscribed to, but
+ // only if they get them for free.
+ contextDebug() << "Received a property not subscribed to:" << key;
}
TimedValue Provider::get(const QString &key) const