diff --git a/zebrad/src/components/sync.rs b/zebrad/src/components/sync.rs index 756153b12..5a33bc17c 100644 --- a/zebrad/src/components/sync.rs +++ b/zebrad/src/components/sync.rs @@ -389,7 +389,7 @@ where "starting sync, obtaining new tips" ); if let Err(e) = self.obtain_tips().await { - warn!(?e, "error obtaining tips"); + info!("temporary error obtaining tips: {:#}", e); return Err(()); } self.update_metrics(); @@ -438,7 +438,7 @@ where ); if let Err(e) = self.extend_tips().await { - warn!(?e, "error extending tips"); + info!("temporary error extending tips: {:#}", e); return Err(()); } self.update_metrics();