Skip to content

Commit dde082d

Browse files
committed
style: Run Cargo fmt
1 parent 6472444 commit dde082d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/extractors.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ pub async fn fetch_extractor(
9090
if let Ok(metadata) = std::fs::metadata(&extractor_archive) {
9191
let size_bytes = metadata.len();
9292
let size_mb = size_bytes as f64 / 1_048_576.0; // Convert to MB (1 MB = 1,048,576 bytes)
93-
log::info!("Extractor archive size: {:.2} MB ({} bytes)", size_mb, size_bytes);
93+
log::info!(
94+
"Extractor archive size: {:.2} MB ({} bytes)",
95+
size_mb,
96+
size_bytes
97+
);
9498
} else {
9599
log::warn!("Unable to get size information for the extractor archive");
96100
}

0 commit comments

Comments
 (0)