We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89daa44 commit c387855Copy full SHA for c387855
src/fs_store.rs
@@ -225,6 +225,10 @@ fn write_chunk(
225
// Move the temporary file into a snapshot in the document data directory
226
// with a name based on the hash of the heads of the document
227
let output_path = paths.chunk_path(root, &name);
228
+
229
+ tracing::warn!("Renaming: {:?}", temp_save);
230
+ tracing::warn!("To: {:?}", output_path);
231
232
std::fs::rename(&temp_save_path, &output_path)
233
.map_err(|e| Error(ErrorKind::RenameTempFile(temp_save_path, output_path, e)))?;
234
0 commit comments