Skip to content

Commit

Permalink
Remove debugging log from memory table
Browse files Browse the repository at this point in the history
  • Loading branch information
esensar committed Dec 17, 2024
1 parent dfff8f9 commit cb4dacb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/enrichment_tables/memory/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ impl Memory {
};
let new_entry_key = k.as_str().to_string();
let new_entry_size = new_entry_key.size_of() + new_entry.size_of();
info!("New entry size: {}", new_entry_size);
if self.config.max_byte_size > 0
&& metadata.byte_size.saturating_add(new_entry_size as u64)
> self.config.max_byte_size
Expand Down

0 comments on commit cb4dacb

Please sign in to comment.