diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/file_system/object_cas.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/file_system/object_cas.hpp b/src/buildtool/file_system/object_cas.hpp index 87042534..ad1da349 100644 --- a/src/buildtool/file_system/object_cas.hpp +++ b/src/buildtool/file_system/object_cas.hpp @@ -100,7 +100,7 @@ class ObjectCAS { auto const& id = digest.hash(); auto blob_path = file_store_.GetPath(id); if (not IsAvailable(digest, blob_path)) { - logger_.Emit(LogLevel::Debug, "Blob not found {}", id); + logger_.Emit(LogLevel::Trace, "Blob not found {}", id); return std::nullopt; } return blob_path; |