add finish append frames log

This commit is contained in:
Pere Diaz Bou
2025-06-24 10:56:03 +02:00
parent e2df4e1d33
commit 8517cea530

View File

@@ -930,6 +930,11 @@ impl Wal for WalFile {
println!("finish_append_frames_commit");
let shared = self.get_shared();
shared.max_frame.store(self.max_frame, Ordering::SeqCst);
tracing::trace!(
"finish_append_frames_commit(max_frame={}, last_checksum={:?})",
self.max_frame,
self.last_checksum
);
shared.last_checksum = self.last_checksum;
Ok(())
}