We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5210f2 commit 7ad2188Copy full SHA for 7ad2188
1 file changed
libsql-wal/src/segment/list.rs
@@ -136,7 +136,7 @@ where
136
let mut last_replication_index = 0;
137
while let Some((k, v)) = union.next() {
138
let page_no = u32::from_be_bytes(k.try_into().unwrap());
139
- tracing::debug!(page_no);
+ tracing::trace!(page_no);
140
let v = v.iter().min_by_key(|i| i.index).unwrap();
141
let offset = v.value as u32;
142
@@ -198,6 +198,8 @@ where
198
199
self.len.fetch_sub(segs.len(), Ordering::Relaxed);
200
201
+ tracing::debug!(until = last_replication_index, "checkpointed");
202
+
203
Ok(Some(last_replication_index))
204
}
205
0 commit comments