diff --git a/core/storage/wal.rs b/core/storage/wal.rs index 6b42603c8..bbba04f92 100644 --- a/core/storage/wal.rs +++ b/core/storage/wal.rs @@ -993,9 +993,6 @@ impl Wal for WalFile { let checkpoint_seq = shared.wal_header.lock().checkpoint_seq; (mx, nb, ck, checkpoint_seq) }; - // dbg!(shared_max != self.max_frame.load(Ordering::Acquire)); - // dbg!(last_checksum != self.last_checksum); - // dbg!(checkpoint_seq != self.checkpoint_seq.load(Ordering::Acquire)); let db_changed = shared_max != self.max_frame.load(Ordering::Acquire) || last_checksum != self.last_checksum || checkpoint_seq != self.checkpoint_seq.load(Ordering::Acquire);