summaryrefslogtreecommitdiffstats
path: root/common/synchronizerstore.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-10 16:18:10 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-10 16:18:10 +0200
commit4f6d324285aec8df66d341243bcf0bc09c240c02 (patch)
tree3635eee533ad80791a37d6ddd862686736951bd5 /common/synchronizerstore.cpp
parent39b3b6c7ff99f18e8719b28d748ec63adf76808d (diff)
downloadsink-4f6d324285aec8df66d341243bcf0bc09c240c02.tar.gz
sink-4f6d324285aec8df66d341243bcf0bc09c240c02.zip
Less noise
Diffstat (limited to 'common/synchronizerstore.cpp')
-rw-r--r--common/synchronizerstore.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/synchronizerstore.cpp b/common/synchronizerstore.cpp
index dea4821..5364094 100644
--- a/common/synchronizerstore.cpp
+++ b/common/synchronizerstore.cpp
@@ -73,7 +73,8 @@ QByteArray SynchronizerStore::resolveLocalId(const QByteArray &bufferType, const
73{ 73{
74 QByteArray remoteId = Index("localid.mapping." + bufferType, mTransaction).lookup(localId); 74 QByteArray remoteId = Index("localid.mapping." + bufferType, mTransaction).lookup(localId);
75 if (remoteId.isEmpty()) { 75 if (remoteId.isEmpty()) {
76 SinkWarning() << "Couldn't find the remote id for " << bufferType << localId; 76 //This can happen if we didn't store the remote id in the first place
77 SinkTrace() << "Couldn't find the remote id for " << bufferType << localId;
77 return QByteArray(); 78 return QByteArray();
78 } 79 }
79 return remoteId; 80 return remoteId;