From 35ae961b37dfc860ab52edd69093d71c5b2a732f Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Sun, 25 Jan 2015 19:06:55 +0100 Subject: debug output --- common/pipeline.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'common') diff --git a/common/pipeline.cpp b/common/pipeline.cpp index 13a3344..f440c6d 100644 --- a/common/pipeline.cpp +++ b/common/pipeline.cpp @@ -95,7 +95,7 @@ void Pipeline::null() Async::Job Pipeline::newEntity(void const *command, size_t size) { - qDebug() << "new entity" << size; + qDebug() << "Pipeline: New Entity"; //TODO toRFC4122 would probably be more efficient, but results in non-printable keys. const auto key = QUuid::createUuid().toString().toUtf8(); @@ -137,6 +137,7 @@ Async::Job Pipeline::newEntity(void const *command, size_t size) storage().write(key.data(), key.size(), fbb.GetBufferPointer(), fbb.GetSize()); storage().setMaxRevision(newRevision); + qDebug() << "Pipeline: wrote entity: "<< newRevision; return Async::start([this, key, entityType](Async::Future &future) { PipelineState state(this, NewPipeline, key, d->newPipeline[entityType], [&future]() { -- cgit v1.2.3