diff options
author | Minijackson <minijackson@riseup.net> | 2018-08-21 16:10:42 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2018-08-21 16:10:42 +0200 |
commit | 09c4df08735c397752d5b90be60c6e877254d1c5 (patch) | |
tree | a4d0311b4168ef715d935b30159ca9be4def3648 | |
parent | 04474c1f959a204fc67aecc033e12371d1c2546a (diff) | |
download | sink-09c4df08735c397752d5b90be60c6e877254d1c5.tar.gz sink-09c4df08735c397752d5b90be60c6e877254d1c5.zip |
Remove internal key trace log
-rw-r--r-- | common/storage/entitystore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/storage/entitystore.cpp b/common/storage/entitystore.cpp index daabf1f..c05470c 100644 --- a/common/storage/entitystore.cpp +++ b/common/storage/entitystore.cpp | |||
@@ -249,7 +249,7 @@ bool EntityStore::add(const QByteArray &type, ApplicationDomainType entity, bool | |||
249 | DataStore::setMaxRevision(d->transaction, newRevision); | 249 | DataStore::setMaxRevision(d->transaction, newRevision); |
250 | DataStore::recordRevision(d->transaction, newRevision, entity.identifier(), type); | 250 | DataStore::recordRevision(d->transaction, newRevision, entity.identifier(), type); |
251 | DataStore::recordUid(d->transaction, entity.identifier(), type); | 251 | DataStore::recordUid(d->transaction, entity.identifier(), type); |
252 | SinkTraceCtx(d->logCtx) << "Wrote entity: " << entity.identifier() << type << newRevision << "key:" << key.toInternalByteArray(); | 252 | SinkTraceCtx(d->logCtx) << "Wrote entity: " << key << "of type:" << type; |
253 | return true; | 253 | return true; |
254 | } | 254 | } |
255 | 255 | ||