From 56f9074d2a218f3eac8a5be6580aa78d11a99222 Mon Sep 17 00:00:00 2001 From: John Mumm Date: Fri, 22 Aug 2025 16:47:18 +0100 Subject: [PATCH] .. --- crates/uv-auth/src/keyring.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/uv-auth/src/keyring.rs b/crates/uv-auth/src/keyring.rs index d0cdfa8b5..7b21eda46 100644 --- a/crates/uv-auth/src/keyring.rs +++ b/crates/uv-auth/src/keyring.rs @@ -57,11 +57,15 @@ impl KeyringProvider { match &self.backend { KeyringProviderBackend::Native => { let Some(username) = credentials.username() else { - trace!("Unable to store credentials in keyring for {url} due to missing username"); + trace!( + "Unable to store credentials in keyring for {url} due to missing username" + ); return; }; let Some(password) = credentials.password() else { - trace!("Unable to store credentials in keyring for {url} due to missing password"); + trace!( + "Unable to store credentials in keyring for {url} due to missing password" + ); return; };