From 54b4a9dabbf5ba086ea36ad374dba7389473ab92 Mon Sep 17 00:00:00 2001 From: Zanie Date: Tue, 20 Feb 2024 17:30:11 -0600 Subject: [PATCH] Restore debug log --- crates/uv-git/src/git.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/uv-git/src/git.rs b/crates/uv-git/src/git.rs index 0e1355581..0bb28b4e1 100644 --- a/crates/uv-git/src/git.rs +++ b/crates/uv-git/src/git.rs @@ -1002,6 +1002,7 @@ pub(crate) fn fetch( tags, ) .or_else(|_| { + debug!("fetching with libgit2 failed, trying the git command"); fetch_with_strategy( repo, remote_url,