Skip to content

Commit 9cf736e

Browse files
committed
adjust block resolved and sync committee message received log levels
1 parent 7ac95c6 commit 9cf736e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

beacon_chain/consensus_object_pools/block_clearance.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ proc addResolvedHeadBlock(
7676
epochRef = dag.getEpochRef(state, cache)
7777
epochRefTick = Moment.now()
7878

79-
debug "Block resolved",
79+
info "Block resolved",
8080
blockRoot = shortLog(blockRoot),
8181
blck = shortLog(trustedBlock.message),
8282
blockVerified,

beacon_chain/gossip_processing/eth2_processor.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ proc processSyncCommitteeMessage*(
485485

486486
# Potential under/overflows are fine; would just create odd metrics and logs
487487
let delay = wallTime - syncCommitteeMsg.slot.start_beacon_time
488-
debug "Sync committee message received", delay
488+
trace "Sync committee message received", delay
489489

490490
# Now proceed to validation
491491
let v = await validateSyncCommitteeMessage(

scripts/launch_local_testnet.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ USE_HTOP="1"
6666
USE_VC="1"
6767
LIGHTHOUSE_VC_NODES="0"
6868
USE_GANACHE="0"
69-
LOG_LEVEL="DEBUG; TRACE:networking"
69+
LOG_LEVEL="TRACE"
7070
BASE_PORT="9000"
7171
BASE_REMOTE_SIGNER_PORT="6000"
7272
BASE_METRICS_PORT="8008"

0 commit comments

Comments
 (0)