diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-01 10:32:17 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-01 10:32:17 +0100 |
commit | dd51cfbcb70f076503b66c45b41f63e17e978fd8 (patch) | |
tree | fd7ef803282e52a94a146e51d7811216aea8668e | |
parent | 29ac897b114200c9f3de400cacbed017e16e06e5 (diff) | |
download | sink-dd51cfbcb70f076503b66c45b41f63e17e978fd8.tar.gz sink-dd51cfbcb70f076503b66c45b41f63e17e978fd8.zip |
Removed unnecessary debug output.
-rw-r--r-- | common/datastorequery.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/datastorequery.cpp b/common/datastorequery.cpp index 087f405..aa0056c 100644 --- a/common/datastorequery.cpp +++ b/common/datastorequery.cpp | |||
@@ -296,7 +296,6 @@ public: | |||
296 | while(!foundValue && mSource->next([this, callback, &foundValue](const ResultSet::Result &result) { | 296 | while(!foundValue && mSource->next([this, callback, &foundValue](const ResultSet::Result &result) { |
297 | mBloomValue = result.entity.getProperty(mBloomProperty); | 297 | mBloomValue = result.entity.getProperty(mBloomProperty); |
298 | auto results = indexLookup(mBloomProperty, mBloomValue); | 298 | auto results = indexLookup(mBloomProperty, mBloomValue); |
299 | SinkWarning() << "Bloomed on value " << mBloomValue << " and found " << results.size(); | ||
300 | for (const auto &r : results) { | 299 | for (const auto &r : results) { |
301 | readEntity(r, [&, this](const Sink::ApplicationDomain::ApplicationDomainType &entity, Sink::Operation operation) { | 300 | readEntity(r, [&, this](const Sink::ApplicationDomain::ApplicationDomainType &entity, Sink::Operation operation) { |
302 | callback({entity, Sink::Operation_Creation}); | 301 | callback({entity, Sink::Operation_Creation}); |