Skip to content

Commit

Permalink
MRG: fix formatting from #3306 (#3307)
Browse files Browse the repository at this point in the history
`cargo fmt` <sigh>
  • Loading branch information
ctb authored Aug 26, 2024
1 parent c46618e commit f5cd49e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/core/src/index/revindex/disk_revindex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ impl RevIndex {

info!("Compact SSTs");
index.compact();
info!("Done! Processed {} reference sigs", processed_sigs.into_inner());
info!(
"Done! Processed {} reference sigs",
processed_sigs.into_inner()
);

Ok(module::RevIndex::Plain(index))
}
Expand Down

0 comments on commit f5cd49e

Please sign in to comment.