Skip to content

Commit

Permalink
Useless print statements removed
Browse files Browse the repository at this point in the history
  • Loading branch information
stela2502 committed Dec 6, 2024
1 parent fa459b5 commit 471090c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/mapping_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,7 @@ impl MappingInfo{
pub fn report(&mut self, issue: &str) {
// Increment the count for the issue type
*self.error_counts.entry(issue.to_string()).or_insert(0) += 1;

println!("Issue reported: {}", issue);
//println!("Issue reported: {}", issue);
}

// Optionally, add a method to retrieve counts for a specific issue
Expand Down

0 comments on commit 471090c

Please sign in to comment.