summaryrefslogtreecommitdiffstats
path: root/common/storage/entitystore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/storage/entitystore.cpp')
-rw-r--r--common/storage/entitystore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/storage/entitystore.cpp b/common/storage/entitystore.cpp
index b6251b6..1417861 100644
--- a/common/storage/entitystore.cpp
+++ b/common/storage/entitystore.cpp
@@ -239,11 +239,11 @@ bool EntityStore::remove(const QByteArray &type, const QByteArray &uid, bool rep
239 [](const DataStore::Error &error) { SinkWarning() << "Failed to read old revision from storage: " << error.message; }); 239 [](const DataStore::Error &error) { SinkWarning() << "Failed to read old revision from storage: " << error.message; });
240 240
241 if (!found) { 241 if (!found) {
242 SinkWarning() << "Failed to find entity " << uid; 242 SinkWarning() << "Remove: Failed to find entity " << uid;
243 return false; 243 return false;
244 } 244 }
245 if (alreadyRemoved) { 245 if (alreadyRemoved) {
246 SinkWarning() << "Entity is already removed " << uid; 246 SinkWarning() << "Remove: Entity is already removed " << uid;
247 return false; 247 return false;
248 } 248 }
249 249