diff --git a/crates/uv/src/commands/python/pin.rs b/crates/uv/src/commands/python/pin.rs index 471f7461e..8ba2e698c 100644 --- a/crates/uv/src/commands/python/pin.rs +++ b/crates/uv/src/commands/python/pin.rs @@ -110,6 +110,12 @@ pub(crate) async fn pin( warn_user_once!("{err}"); None } + // If there was some other error, log it + Err(err) if !resolved => { + debug!("{err}"); + None + } + // If `resolved` was requested, we must find an interpreter — fail otherwise Err(err) => return Err(err.into()), };