Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions eth1_api/src/execution_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use futures::{
StreamExt as _,
channel::mpsc::{UnboundedReceiver, UnboundedSender},
};
use logging::warn_with_peers;
use logging::{debug_with_peers, warn_with_peers};
use std_ext::ArcExt as _;
use types::{
combined::{ExecutionPayload, ExecutionPayloadParams},
Expand Down Expand Up @@ -177,7 +177,7 @@ impl<P: Preset, W: Wait> ExecutionService<P, W> {
}

if response.payload_status.status.is_syncing() {
warn_with_peers!(
debug_with_peers!(
"engine_forkchoiceUpdated returned SYNCING status \
(head_eth1_block_hash: {head_eth1_block_hash:?}, \
safe_eth1_block_hash: {safe_eth1_block_hash:?}, \
Expand Down Expand Up @@ -216,7 +216,7 @@ impl<P: Preset, W: Wait> ExecutionService<P, W> {
}

if response.status.is_syncing() {
warn_with_peers!(
debug_with_peers!(
"engine_newPayload returned SYNCING status \
(beacon_block_root: {beacon_block_root:?}, \
block_number: {block_number}, \
Expand Down