Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
radicle: Fix log when delegate is not found
cloudhead committed 1 year ago
commit 16560950ecfab3c8b9edf19db4cb4d665e8472ea
parent a496190198bd5dc0eb741c57a87fe4112ba32647
1 file changed +2 -1
modified 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),