summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/buildtool/file_system/git_cas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/file_system/git_cas.cpp b/src/buildtool/file_system/git_cas.cpp
index 85635c4e..51411a32 100644
--- a/src/buildtool/file_system/git_cas.cpp
+++ b/src/buildtool/file_system/git_cas.cpp
@@ -38,8 +38,8 @@ namespace {
case GIT_OBJECT_TREE:
return ObjectType::Tree;
default:
- Logger::Log(LogLevel::Error,
- "unsupported git object type {}",
+ Logger::Log(LogLevel::Debug,
+ "Unsupported git object type {}",
git_object_type2string(type));
return std::nullopt;
}