From 998453c50f0363e67178ff2c6832fce0383d0c58 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 27 Oct 2023 10:42:28 +0200 Subject: [PATCH] chore: add debug log for tree during setup (#5201) --- bin/reth/src/node/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/reth/src/node/mod.rs b/bin/reth/src/node/mod.rs index e7f0cfae7..dcb7b7d11 100644 --- a/bin/reth/src/node/mod.rs +++ b/bin/reth/src/node/mod.rs @@ -292,6 +292,7 @@ impl NodeCommand { .with_sync_metrics_tx(metrics_tx.clone()); let canon_state_notification_sender = tree.canon_state_notification_sender(); let blockchain_tree = ShareableBlockchainTree::new(tree); + debug!(target: "reth::cli", "configured blockchain tree"); // fetch the head block from the database let head = self.lookup_head(Arc::clone(&db)).wrap_err("the head block is missing")?;