Skip to content

Commit

Permalink
Lower debug! logs to trace! (#3053)
Browse files Browse the repository at this point in the history
## Issue Addressed

These logs were very loud during sync.
  • Loading branch information
paulhauner committed Mar 3, 2022
1 parent aea43b6 commit 09d2187
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions beacon_node/execution_layer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use engines::{Engine, EngineError, Engines, ForkChoiceState, Logging};
use lru::LruCache;
use payload_status::process_multiple_payload_statuses;
use sensitive_url::SensitiveUrl;
use slog::{crit, debug, error, info, Logger};
use slog::{crit, debug, error, info, trace, Logger};
use slot_clock::SlotClock;
use std::collections::HashMap;
use std::future::Future;
Expand Down Expand Up @@ -475,7 +475,7 @@ impl ExecutionLayer {
&self,
execution_payload: &ExecutionPayload<T>,
) -> Result<PayloadStatus, Error> {
debug!(
trace!(
self.log(),
"Issuing engine_newPayload";
"parent_hash" => ?execution_payload.parent_hash,
Expand Down Expand Up @@ -514,7 +514,7 @@ impl ExecutionLayer {
finalized_block_hash: ExecutionBlockHash,
payload_attributes: Option<PayloadAttributes>,
) -> Result<PayloadStatus, Error> {
debug!(
trace!(
self.log(),
"Issuing engine_forkchoiceUpdated";
"finalized_block_hash" => ?finalized_block_hash,
Expand Down

0 comments on commit 09d2187

Please sign in to comment.