From b2ad8f785e801a35cadf254d827f56d648be510c Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Thu, 22 Dec 2016 18:22:39 +0100 Subject: Introduced Log::Context To have hierarchical debug output we have to pass around something at run-time, there is no reasonable alternative. Log::Context provides the identifier to do just that and largely replaces the debug component idea. --- common/pipeline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/pipeline.cpp') diff --git a/common/pipeline.cpp b/common/pipeline.cpp index 0eb6df5..c9a8092 100644 --- a/common/pipeline.cpp +++ b/common/pipeline.cpp @@ -49,7 +49,7 @@ using namespace Sink::Storage; class Pipeline::Private { public: - Private(const ResourceContext &context) : resourceContext(context), entityStore(context), revisionChanged(false) + Private(const ResourceContext &context) : resourceContext(context), entityStore(context, {"pipeline"}), revisionChanged(false) { } -- cgit v1.2.3