diff options
author | Sascha Roloff <sascha.roloff@huawei.com> | 2022-11-24 15:08:19 +0100 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2022-11-24 15:08:19 +0100 |
commit | 481e69c86c3e33b06d9318e909cabe6de176c5f5 (patch) | |
tree | 4c0356d7dcc4ca6984a9efdee73a6702cdd13192 /src | |
parent | e62914c686d76d48fad2f4ca019cd95bac8913bf (diff) | |
download | justbuild-481e69c86c3e33b06d9318e909cabe6de176c5f5.tar.gz |
Add tree id to trace output
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/execution_engine/executor/executor.hpp | 2 |
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; |