diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/file_system/git_cas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/file_system/git_cas.cpp b/src/buildtool/file_system/git_cas.cpp index 7bddf6b3..65fa874f 100644 --- a/src/buildtool/file_system/git_cas.cpp +++ b/src/buildtool/file_system/git_cas.cpp @@ -147,7 +147,7 @@ auto GitCAS::OpenODB(std::filesystem::path const& repo_path) noexcept -> bool { std::unique_lock lock{repo_mutex}; git_repository* repo = nullptr; if (git_repository_open(&repo, repo_path.c_str()) != 0) { - Logger::Log(LogLevel::Error, + Logger::Log(LogLevel::Debug, "opening git repository {} failed with:\n{}", repo_path.string(), GitLastError()); |