This commit is contained in:
Nicholas Wehr
2025-08-21 23:50:10 -07:00
parent cdb0f9e8a2
commit fae4b4c8f9
2 changed files with 3 additions and 3 deletions

View File

@ -338,7 +338,7 @@ impl Backfiller {
let path = format!("{}/{f}/{s}/{number}.rmp.lz4", self.root.to_string_lossy());
if Path::new(&path).exists() {
trace!(block = number, "hlfs: already have");
debug!(block = number, "hlfs: already have");
return Ok(None);
}
match self.client.wants_block(number, rr_index).await {
@ -356,6 +356,7 @@ impl Backfiller {
warn!(%path, "hlfs: write failed: {e}");
return Ok(None);
}
debug!(block = number, "hlfs: got block");
Ok(Some(data.len()))
}
}