Skip to content

Commit

Permalink
fix(examples): Reduce Origin Advance to Warn (#372)
Browse files Browse the repository at this point in the history
* fix(examples): reduce origin advance error to warn

* fix(examples): small wording fix
  • Loading branch information
refcell authored Jul 11, 2024
1 parent c867dde commit 0cb5955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/trusted-sync/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ async fn sync(cli: cli::Cli) -> Result<()> {
}
StepResult::OriginAdvanceErr(e) => {
metrics::PIPELINE_STEPS.with_label_values(&["origin_advance_failure"]).inc();
error!(target: "loop", "Error advancing origin: {:?}", e);
warn!(target: "loop", "Could not advance origin: {:?}", e);
}
StepResult::StepFailed(e) => {
metrics::PIPELINE_STEPS.with_label_values(&["failure"]).inc();
Expand Down

0 comments on commit 0cb5955

Please sign in to comment.