From b90ae838c7911ea9e86ae0de1a18e72032080912 Mon Sep 17 00:00:00 2001 From: tersec Date: Tue, 6 Sep 2022 23:41:55 +0000 Subject: [PATCH] checking for merge terminal block should be debug-level (#4075) --- beacon_chain/eth1/eth1_monitor.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_chain/eth1/eth1_monitor.nim b/beacon_chain/eth1/eth1_monitor.nim index b1856c2d9..68f305d4d 100644 --- a/beacon_chain/eth1/eth1_monitor.nim +++ b/beacon_chain/eth1/eth1_monitor.nim @@ -1513,7 +1513,7 @@ proc startEth1Syncing(m: Eth1Monitor, delayBeforeStart: Duration) {.async.} = if m.currentEpoch >= m.cfg.BELLATRIX_FORK_EPOCH and m.terminalBlockHash.isNone: var terminalBlockCandidate = nextBlock - info "startEth1Syncing: checking for merge terminal block", + debug "startEth1Syncing: checking for merge terminal block", currentEpoch = m.currentEpoch, BELLATRIX_FORK_EPOCH = m.cfg.BELLATRIX_FORK_EPOCH, totalDifficulty = $nextBlock.totalDifficulty,