summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/local/local_storage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_api/local/local_storage.cpp')
-rw-r--r--src/buildtool/execution_api/local/local_storage.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/buildtool/execution_api/local/local_storage.cpp b/src/buildtool/execution_api/local/local_storage.cpp
index 304ea502..a52e347d 100644
--- a/src/buildtool/execution_api/local/local_storage.cpp
+++ b/src/buildtool/execution_api/local/local_storage.cpp
@@ -26,8 +26,9 @@ namespace {
*content);
}
}
- Logger::Log(
- LogLevel::Error, "Directory {} not found in CAS", digest.hash());
+ Logger::Log(LogLevel::Error,
+ "Directory {} not found in CAS",
+ NativeSupport::Unprefix(digest.hash()));
return std::nullopt;
}
@@ -43,7 +44,9 @@ namespace {
/*is_hex_id=*/false);
}
}
- Logger::Log(LogLevel::Error, "Tree {} not found in CAS", digest.hash());
+ Logger::Log(LogLevel::Error,
+ "Tree {} not found in CAS",
+ NativeSupport::Unprefix(digest.hash()));
return std::nullopt;
}