diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-12-13 17:50:02 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-12-13 17:50:02 +0100 |
commit | c13406530ebd9c07553ab99fb40a070565446a8d (patch) | |
tree | f3f1e6a2aeefe2f9ff50268d41337134bdf9a276 /common/bufferadaptor.h | |
parent | 8ea73606e5670aeaff831b8331d5e6a9cbefef58 (diff) | |
download | sink-c13406530ebd9c07553ab99fb40a070565446a8d.tar.gz sink-c13406530ebd9c07553ab99fb40a070565446a8d.zip |
Improved debug output.
Diffstat (limited to 'common/bufferadaptor.h')
-rw-r--r-- | common/bufferadaptor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bufferadaptor.h b/common/bufferadaptor.h index f6994d7..0ae7bf5 100644 --- a/common/bufferadaptor.h +++ b/common/bufferadaptor.h | |||
@@ -66,7 +66,7 @@ public: | |||
66 | virtual QVariant getProperty(const QByteArray &key) const | 66 | virtual QVariant getProperty(const QByteArray &key) const |
67 | { | 67 | { |
68 | if (!mValues.contains(key)) { | 68 | if (!mValues.contains(key)) { |
69 | qWarning() << "Tried to read value that is not avialable; Did you forget to call Query::request?"; | 69 | qWarning() << "Tried to read value that is not available; Did you forget to call Query::request? Property: " << key; |
70 | return QVariant{}; | 70 | return QVariant{}; |
71 | } | 71 | } |
72 | return mValues.value(key); | 72 | return mValues.value(key); |