summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/buildtool/file_system/git_tree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/file_system/git_tree.cpp b/src/buildtool/file_system/git_tree.cpp
index db391b7e..a369af78 100644
--- a/src/buildtool/file_system/git_tree.cpp
+++ b/src/buildtool/file_system/git_tree.cpp
@@ -86,7 +86,7 @@ auto GitTree::LookupEntryByName(std::string const& name) const noexcept
auto entry_it = entries_.find(name);
if (entry_it == entries_.end()) {
Logger::Log(
- LogLevel::Error, "git tree does not contain entry {}", name);
+ LogLevel::Debug, "git tree does not contain entry {}", name);
return nullptr;
}
return entry_it->second;