diff --git a/beacon_chain/consensus_object_pools/consensus_manager.nim b/beacon_chain/consensus_object_pools/consensus_manager.nim index 6d14a3179..bd692117d 100644 --- a/beacon_chain/consensus_object_pools/consensus_manager.nim +++ b/beacon_chain/consensus_object_pools/consensus_manager.nim @@ -123,7 +123,7 @@ proc runForkchoiceUpdated*( return fcuR.payloadStatus.status except CatchableError as err: - debug "runForkchoiceUpdated: forkchoiceUpdated failed", + error "runForkchoiceUpdated: forkchoiceUpdated failed", err = err.msg return PayloadExecutionStatus.syncing diff --git a/beacon_chain/gossip_processing/block_processor.nim b/beacon_chain/gossip_processing/block_processor.nim index 3fa795424..bbe80d01f 100644 --- a/beacon_chain/gossip_processing/block_processor.nim +++ b/beacon_chain/gossip_processing/block_processor.nim @@ -436,7 +436,7 @@ proc newExecutionPayload*( return payloadStatus except CatchableError as err: - debug "newPayload failed", msg = err.msg + error "newPayload failed", msg = err.msg return PayloadExecutionStatus.syncing from ../consensus_object_pools/blockchain_dag import @@ -513,9 +513,9 @@ proc runQueueProcessingLoop*(self: ref BlockProcessor) {.async.} = await newExecutionPayload( self.consensusManager.eth1Monitor, executionPayload) except CatchableError as err: - info "runQueueProcessingLoop: newPayload failed", + error "runQueueProcessingLoop: newPayload failed", err = err.msg - # https://github.com/ethereum/consensus-specs/blob/v1.2.0-rc.1/sync/optimistic.md#execution-engine-errors + # https://github.com/ethereum/consensus-specs/blob/v1.2.0-rc.2/sync/optimistic.md#execution-engine-errors if not blck.resfut.isNil: blck.resfut.complete( Result[void, BlockError].err(BlockError.MissingParent))