diff options
Diffstat (limited to 'src/buildtool/file_system')
-rw-r--r-- | src/buildtool/file_system/git_repo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/file_system/git_repo.cpp b/src/buildtool/file_system/git_repo.cpp index 4a6e8ad2..b19dfe3e 100644 --- a/src/buildtool/file_system/git_repo.cpp +++ b/src/buildtool/file_system/git_repo.cpp @@ -1881,7 +1881,7 @@ auto GitRepo::ReadTree(std::string const& id, if (not symlinks.empty() and not std::invoke(check_symlinks.get(), symlinks)) { - Logger::Log(LogLevel::Error, + Logger::Log(LogLevel::Debug, "found upwards symlinks in Git tree {}", is_hex_id ? std::string{id} : ToHexString(id)); return std::nullopt; @@ -1890,7 +1890,7 @@ auto GitRepo::ReadTree(std::string const& id, return entries; } catch (std::exception const& ex) { - Logger::Log(LogLevel::Error, + Logger::Log(LogLevel::Debug, "reading tree with checker failed with:\n{}", ex.what()); } |