Skip to content

Commit

Permalink
fix(FS): Less verbose flat storage (#8996)
Browse files Browse the repository at this point in the history
Creation of Flat Storage is too verbose.
  • Loading branch information
nikurt committed May 2, 2023
1 parent 9ddf4c6 commit f93fb41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/chain/src/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4959,7 +4959,7 @@ impl<'a> ChainUpdate<'a> {
} else {
let shard_id = shard_uid.shard_id();
// Otherwise, save delta to disk so it will be used for flat storage creation later.
info!(target: "chain", %shard_id, "Add delta for flat storage creation");
debug!(target: "chain", %shard_id, "Add delta for flat storage creation");
let mut store_update = self.chain_store_update.store().store_update();
store_helper::set_delta(&mut store_update, shard_uid, &delta)
.map_err(|e| StorageError::from(e))?;
Expand Down

0 comments on commit f93fb41

Please sign in to comment.