Skip to content

Commit

Permalink
remove repository url from logs
Browse files Browse the repository at this point in the history
  • Loading branch information
juli1 committed May 7, 2024
1 parent 0fb157c commit 38fb9f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/bins/src/bin/datadog-static-analyzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,10 @@ fn main() -> Result<()> {
match configuration.generate_diff_aware_request_data(configuration.use_debug) {
Ok(params) => {
if configuration.use_debug {
println!("Diff-aware request with repository url {}, sha {}, branch {}, config hash {}", params.repository_url, params.sha, params.branch, params.config_hash);
println!(
"Diff-aware request with sha {}, branch {}, config hash {}",
params.sha, params.branch, params.config_hash
);
}

match get_diff_aware_information(&params) {
Expand Down

0 comments on commit 38fb9f8

Please sign in to comment.