diff options
Diffstat (limited to 'common/pipeline.cpp')
-rw-r--r-- | common/pipeline.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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() | |||
95 | 95 | ||
96 | Async::Job<void> Pipeline::newEntity(void const *command, size_t size) | 96 | Async::Job<void> Pipeline::newEntity(void const *command, size_t size) |
97 | { | 97 | { |
98 | qDebug() << "new entity" << size; | 98 | qDebug() << "Pipeline: New Entity"; |
99 | 99 | ||
100 | //TODO toRFC4122 would probably be more efficient, but results in non-printable keys. | 100 | //TODO toRFC4122 would probably be more efficient, but results in non-printable keys. |
101 | const auto key = QUuid::createUuid().toString().toUtf8(); | 101 | const auto key = QUuid::createUuid().toString().toUtf8(); |
@@ -137,6 +137,7 @@ Async::Job<void> Pipeline::newEntity(void const *command, size_t size) | |||
137 | 137 | ||
138 | storage().write(key.data(), key.size(), fbb.GetBufferPointer(), fbb.GetSize()); | 138 | storage().write(key.data(), key.size(), fbb.GetBufferPointer(), fbb.GetSize()); |
139 | storage().setMaxRevision(newRevision); | 139 | storage().setMaxRevision(newRevision); |
140 | qDebug() << "Pipeline: wrote entity: "<< newRevision; | ||
140 | 141 | ||
141 | return Async::start<void>([this, key, entityType](Async::Future<void> &future) { | 142 | return Async::start<void>([this, key, entityType](Async::Future<void> &future) { |
142 | PipelineState state(this, NewPipeline, key, d->newPipeline[entityType], [&future]() { | 143 | PipelineState state(this, NewPipeline, key, d->newPipeline[entityType], [&future]() { |