We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d00152 commit adede57Copy full SHA for adede57
rust/cubestore/cubestore/src/remotefs/mod.rs
@@ -224,6 +224,7 @@ impl RemoteFs for LocalDirRemoteFs {
224
e
225
))
226
})?;
227
+ debug!("Copy {temp_upload_path} => {dest}");
228
fs::copy(&temp_upload_path, dest.clone())
229
.await
230
.map_err(|e| {
@@ -237,6 +238,7 @@ impl RemoteFs for LocalDirRemoteFs {
237
238
}
239
if has_remote {
240
let size = fs::metadata(&temp_upload_path).await?.len();
241
+ debug!("Size from {temp_upload_path} is {size}");
242
self.check_upload_file(remote_path.clone(), size).await?;
243
244
0 commit comments