diff options
Diffstat (limited to 'common/synchronizerstore.cpp')
-rw-r--r-- | common/synchronizerstore.cpp | 3 |
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; |