Skip to content

Commit

Permalink
chore: convert debug into warn (paradigmxyz#3311)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Jun 22, 2023
1 parent dc74fad commit 48bdb63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/consensus/beacon/src/engine/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ where
Ok(status)
}
Err(error) => {
debug!(target: "consensus::engine", ?error, "Error while processing payload");
warn!(target: "consensus::engine", ?error, "Error while processing payload");
self.map_insert_error(error)
}
};
Expand Down Expand Up @@ -1087,7 +1087,7 @@ where
}
}
Err(err) => {
debug!(target: "consensus::engine", ?err, "Failed to insert downloaded block");
warn!(target: "consensus::engine", ?err, "Failed to insert downloaded block");
if !matches!(err.kind(), InsertBlockErrorKind::Internal(_)) {
// non-internal error kinds occur if the payload is invalid
self.invalid_headers.insert(err.into_block().header);
Expand Down

0 comments on commit 48bdb63

Please sign in to comment.