We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e09be05 commit b448906Copy full SHA for b448906
1 file changed
libsql-wal/src/storage/job.rs
@@ -54,6 +54,11 @@ where
54
let segment_id = io.uuid();
55
let tmp = io.tempfile()?;
56
57
+ tracing::debug!(
58
+ namespace = self.request.namespace.as_str(),
59
+ "sending segment to durable storage"
60
+ );
61
+
62
let new_index = segment
63
.compact(&tmp, segment_id)
64
.await
@@ -74,6 +79,13 @@ where
74
79
75
80
backend.store(&config, meta, tmp, new_index).await?;
76
81
82
+ tracing::info!(
83
84
+ start_frame_no = segment.start_frame_no(),
85
+ end_frame_no = segment.last_committed(),
86
+ "stored segment"
87
88
77
89
Ok(segment.last_committed())
78
90
}
91
0 commit comments