From 481e69c86c3e33b06d9318e909cabe6de176c5f5 Mon Sep 17 00:00:00 2001 From: Sascha Roloff Date: Thu, 24 Nov 2022 15:08:19 +0100 Subject: Add tree id to trace output --- src/buildtool/execution_engine/executor/executor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buildtool/execution_engine/executor/executor.hpp b/src/buildtool/execution_engine/executor/executor.hpp index ec280b01..060370fb 100644 --- a/src/buildtool/execution_engine/executor/executor.hpp +++ b/src/buildtool/execution_engine/executor/executor.hpp @@ -222,7 +222,7 @@ class ExecutorImpl { Logger::Log(LogLevel::Trace, [&tree]() { std::ostringstream oss{}; - oss << "upload directory content" << std::endl; + oss << "upload directory content of " << tree.Hash() << std::endl; for (auto const& [path, entry] : tree) { oss << fmt::format(" - {}: {}", path, entry->Hash()) << std::endl; -- cgit v1.2.3