summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-17 12:26:01 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-17 12:26:01 +0200
commit2c47c157120ffa6b9a68581dbd97a88a30d745a2 (patch)
tree9e4d4d750dbc62ce6658b9ae01fc47f9d6c727ec /common
parentf7c37ede99d02a91738f38505922dd331be0ad96 (diff)
downloadsink-2c47c157120ffa6b9a68581dbd97a88a30d745a2.tar.gz
sink-2c47c157120ffa6b9a68581dbd97a88a30d745a2.zip
Print parsed keys that we can read.
Diffstat (limited to 'common')
-rw-r--r--common/storage/entitystore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/storage/entitystore.cpp b/common/storage/entitystore.cpp
index bb0967a..276ee6a 100644
--- a/common/storage/entitystore.cpp
+++ b/common/storage/entitystore.cpp
@@ -441,7 +441,7 @@ QVector<Identifier> EntityStore::fullScan(const QByteArray &type)
441 const auto uid = Sink::Storage::Key::fromInternalByteArray(key).identifier(); 441 const auto uid = Sink::Storage::Key::fromInternalByteArray(key).identifier();
442 if (keys.contains(uid)) { 442 if (keys.contains(uid)) {
443 //Not something that should persist if the replay works, so we keep a message for now. 443 //Not something that should persist if the replay works, so we keep a message for now.
444 SinkTraceCtx(d->logCtx) << "Multiple revisions for key: " << key; 444 SinkTraceCtx(d->logCtx) << "Multiple revisions for uid: " << Sink::Storage::Key::fromInternalByteArray(key) << ". This is normal if changereplay has not completed yet.";
445 } 445 }
446 keys << uid; 446 keys << uid;
447 return true; 447 return true;