aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarja Hassinen <marja.hassinen@nokia.com>2010-11-09 15:40:35 +0200
committerMarja Hassinen <marja.hassinen@nokia.com>2010-11-09 15:40:35 +0200
commita406c3124486dad7f3ad9886dcf6f188d67e900c (patch)
treeed7ae70e549ab24e4aa10c862bc98d4418aae5c8
parentfb13c1d5a8b6bbce840e709544ec8e5caecdf46a (diff)
Fixing some debug/warning inconsistency.
-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