Skip to content

Commit

Permalink
Reduce error logs to info
Browse files Browse the repository at this point in the history
  • Loading branch information
bfish713 committed May 9, 2024
1 parent dc9c692 commit cbddc95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sequencer/src/persistence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ pub trait SequencerPersistence: Sized + Send + Sync + 'static {
.context("loading last voted view")?
{
Some(view) => {
tracing::error!(?view, "starting from saved view");
tracing::info!(?view, "starting from saved view");
view
}
None => {
tracing::error!("no saved view, starting from genesis");
tracing::info!("no saved view, starting from genesis");
ViewNumber::genesis()
}
};
Expand Down

0 comments on commit cbddc95

Please sign in to comment.