Skip to content

Commit

Permalink
remove eprintln call
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed May 2, 2024
1 parent 8bee8b4 commit 45729c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compaction/fifo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl CompactionStrategy for Strategy {
let lifetime_us = now - segment.metadata.created_at;
let lifetime_sec = lifetime_us / 1000 / 1000;

eprintln!("TTL: {lifetime_sec} > {ttl_seconds}");
// eprintln!("TTL: {lifetime_sec} > {ttl_seconds}");

if lifetime_sec > ttl_seconds.into() {
segment_ids_to_delete.push(segment.metadata.id.clone());
Expand Down

0 comments on commit 45729c3

Please sign in to comment.