summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2025-06-05 11:01:27 +0200
committerPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2025-06-05 11:51:47 +0200
commit23a2e73cd0c3d63a4e6f8b9e11b2bcb3da6ecf6e (patch)
tree8831c0bdbbc603dc5a4ca9c2d768f2360996a4f6
parent563f7590f7b1937cc64f09de6d0b37caeb02ddd8 (diff)
downloadjustbuild-23a2e73cd0c3d63a4e6f8b9e11b2bcb3da6ecf6e.tar.gz
GitCAS: Reduce log level where fatal not expected
...and fix inconsistent capitalisation.
-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;
}