From 16560950ecfab3c8b9edf19db4cb4d665e8472ea Mon Sep 17 00:00:00 2001 From: cloudhead Date: Tue, 6 Aug 2024 16:36:27 +0200 Subject: [PATCH] radicle: Fix log when delegate is not found --- radicle/src/git/canonical.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/radicle/src/git/canonical.rs b/radicle/src/git/canonical.rs index c2ef74d7..67b2cd18 100644 --- a/radicle/src/git/canonical.rs +++ b/radicle/src/git/canonical.rs @@ -72,7 +72,8 @@ impl Canonical { Err(e) if super::ext::is_not_found_err(&e) => { log::warn!( target: "radicle", - "Missing `refs/namespaces/{delegate}/{name}` while calculating the canonical reference" + "Missing `refs/namespaces/{}/{name}` while calculating the canonical reference", + delegate.as_key() ); } Err(e) => return Err(e),