Skip to content

Commit ec26965

Browse files
authored
move some spammy recon logs to trace (#7673)
1 parent 45c3468 commit ec26965

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

beacon_chain/nimbus_beacon_node.nim

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1736,15 +1736,14 @@ proc reconstructDataColumns(node: BeaconNode, slot: Slot) =
17361736
if node.dag.db.getDataColumnSidecar(forkyBlck.root, i, colData):
17371737
columns.add(newClone(colData))
17381738
indices.incl(i)
1739-
debug "PeerDAS: Data columns before reconstruction", columns = indices.len
1739+
trace "PeerDAS: Data columns before reconstruction", columns = indices.len
17401740

17411741
# Make sure the node has obtained 50%+ of all the columns
17421742
if columns.lenu64 < (maxColCount div 2):
1743-
warn "The node did not obtain 50%+ of all the columns"
17441743
return
17451744
# Ignore if the node has already obtained all the columns
17461745
elif columns.lenu64 == maxColCount:
1747-
debug "The node has already obtained all the columns"
1746+
trace "The node has already obtained all the columns"
17481747
return
17491748

17501749
let startTime = Moment.now()
@@ -1781,7 +1780,7 @@ proc reconstructDataColumns(node: BeaconNode, slot: Slot) =
17811780

17821781
let reconstructedTime = Moment.now()
17831782

1784-
debug "Columns reconstructed",
1783+
trace "Columns reconstructed",
17851784
columns = reconCounter,
17861785
recoveryTime = recoveredTime - startTime,
17871786
reconstructionTime = reconstructedTime - recoveredTime

0 commit comments

Comments
 (0)