Skip to content

Commit 7a276a7

Browse files
committed
fix(code-mappings): Remove redundant inferred output in upload to avoid duplicate prints
1 parent 44ef01d commit 7a276a7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/commands/code_mappings/upload.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ fn infer_repo_name(
123123
if inferred.is_empty() {
124124
bail!("Could not parse repository name from remote URL: {remote_url}");
125125
}
126-
println!("Inferred repository: {inferred}");
127126
Ok(inferred)
128127
}
129128

@@ -143,6 +142,5 @@ fn infer_default_branch(git_repo: Option<&git2::Repository>, remote_name: Option
143142
debug!("No git repo or remote available, falling back to 'main'");
144143
"main".to_owned()
145144
});
146-
println!("Inferred default branch: {inferred}");
147145
inferred
148146
}

0 commit comments

Comments
 (0)