Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
fgimenez committed Sep 17, 2024
1 parent 203defd commit 0a0b475
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crates/engine/tree/src/tree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2198,10 +2198,7 @@ where
debug!(target: "engine", %error, "Async state root computation failed consistency check, falling back");
None
}
Err(error) => {
error!(target: "engine", %error, "Async state root computation failed");
return Err(InsertBlockErrorKindTwo::Other(Box::new(error)))
}
Err(error) => return Err(InsertBlockErrorKindTwo::Other(Box::new(error))),
};
}

Expand Down

0 comments on commit 0a0b475

Please sign in to comment.