Skip to content

Commit

Permalink
Quiet down a noisy and inactionable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bradlarsen committed Sep 30, 2024
1 parent cd6c187 commit 702c53c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/input-enumerator/src/git_metadata_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ impl ObjectIdBimap {
fn insert(&mut self, oid: ObjectId) {
match self.oid_to_idx.entry(oid) {
gix::hashtable::hash_map::Entry::Occupied(e) => {
warn!("object {} seen multiple times", e.key());
// warn!("object {} seen multiple times", e.key());
}
gix::hashtable::hash_map::Entry::Vacant(e) => {
let idx = ObjectIdx::new(self.idx_to_oid.len());
Expand Down

0 comments on commit 702c53c

Please sign in to comment.