Skip to content

Commit

Permalink
Remove debug print ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
riseshia committed Jul 24, 2024
1 parent 0499822 commit 70025df
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/differ.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ fn build_sfn_tags_diff_ops(
// Check added
let added_tag_keys: HashSet<_> = local_tag_keys.difference(&remote_tag_keys).collect();
if !added_tag_keys.is_empty() {
println!("111added_tag_keys: {:?}", added_tag_keys);
required_ops.insert(DiffOp::AddStateTag);
}

Expand All @@ -231,7 +230,6 @@ fn build_sfn_tags_diff_ops(
.filter(|tag| retained_tag_keys.contains(&&tag.key))
.collect();
if local_retained_tags != remote_retained_tags {
println!("222added_tag_keys: {:?}", added_tag_keys);
required_ops.insert(DiffOp::AddStateTag);
}

Expand Down

0 comments on commit 70025df

Please sign in to comment.