summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSascha Roloff <sascha.roloff@huawei.com>2022-11-24 15:08:19 +0100
committerSascha Roloff <sascha.roloff@huawei.com>2022-11-24 15:08:19 +0100
commit481e69c86c3e33b06d9318e909cabe6de176c5f5 (patch)
tree4c0356d7dcc4ca6984a9efdee73a6702cdd13192 /src
parente62914c686d76d48fad2f4ca019cd95bac8913bf (diff)
downloadjustbuild-481e69c86c3e33b06d9318e909cabe6de176c5f5.tar.gz
Add tree id to trace output
Diffstat (limited to 'src')
-rw-r--r--src/buildtool/execution_engine/executor/executor.hpp2
1 files changed, 1 insertions, 1 deletions
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;