From 92c623eddfee0103d995d0ba33c6d7d230b514c4 Mon Sep 17 00:00:00 2001 From: teor Date: Wed, 28 Oct 2020 15:19:30 +1000 Subject: [PATCH] Log each genesis download This change helps us diagnose sync hangs. --- zebrad/src/components/sync.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zebrad/src/components/sync.rs b/zebrad/src/components/sync.rs index 70e30193..59362c38 100644 --- a/zebrad/src/components/sync.rs +++ b/zebrad/src/components/sync.rs @@ -528,6 +528,7 @@ where // // So we just download and verify the genesis block here. while !self.state_contains(self.genesis_hash).await? { + tracing::info!("starting genesis block download and verify"); self.downloads .download_and_verify(self.genesis_hash) .await