diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-06-29 13:55:13 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2023-07-05 13:08:37 +0200 |
commit | ec40930a14c8b69ff0618f889517d75de12708cf (patch) | |
tree | 17b31b5bb178feb20008018bc880daf9800dd742 /src/buildtool/execution_api/execution_service | |
parent | 43fccdde84fc9df43e73fc21c61b87b65c25002f (diff) | |
download | justbuild-ec40930a14c8b69ff0618f889517d75de12708cf.tar.gz |
just execute: log blob uploads at trace level
Diffstat (limited to 'src/buildtool/execution_api/execution_service')
-rw-r--r-- | src/buildtool/execution_api/execution_service/cas_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buildtool/execution_api/execution_service/cas_server.cpp b/src/buildtool/execution_api/execution_service/cas_server.cpp index 7815f557..ee3b697f 100644 --- a/src/buildtool/execution_api/execution_service/cas_server.cpp +++ b/src/buildtool/execution_api/execution_service/cas_server.cpp @@ -89,6 +89,7 @@ auto CASServiceImpl::BatchUpdateBlobs( } for (auto const& x : request->requests()) { auto const& hash = x.digest().hash(); + logger_.Emit(LogLevel::Trace, "BatchUpdateBlobs: {}", hash); if (!IsValidHash(hash)) { auto const& str = fmt::format("BatchUpdateBlobs: unsupported digest {}", hash); |