From 01332e696313fe275998b3fc558741fcd0f177e7 Mon Sep 17 00:00:00 2001 From: nichmor Date: Wed, 18 Dec 2024 12:12:50 +0200 Subject: [PATCH] misc: remove dbg --- crates/pixi_record/src/pinned_source.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/pixi_record/src/pinned_source.rs b/crates/pixi_record/src/pinned_source.rs index 14aa00e14..af4cda5a0 100644 --- a/crates/pixi_record/src/pinned_source.rs +++ b/crates/pixi_record/src/pinned_source.rs @@ -249,7 +249,6 @@ impl PinnedGitSpec { .append_pair("subdirectory", subdirectory); } - dbg!("piined git spec reference {:?}", &self.source.reference); // Put the requested reference in the query. match &self.source.reference { Reference::Branch(branch) => { @@ -273,16 +272,12 @@ impl PinnedGitSpec { // prepend git+ to the scheme // by transforming it into the string // as url does not allow to change from https to git+https. - let url_str = url.to_string(); - dbg!("url str {:?}", &url_str); let git_prefix = format!("git+{}", url_str); let url = Url::parse(&git_prefix).unwrap(); - dbg!("url parsed is {:?}", &url); - LockedGitUrl(url) } }