Skip to content

Commit

Permalink
minor logging changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobkaufmann committed Sep 6, 2023
1 parent 4880990 commit bf9beb8
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,6 @@ impl RethNodeCommandConfig for EvaRethNodeCommandExt {
cancel.cancel();

// look up the proposer preferences for the slot if available
tracing::info!(
slot = %payload_slot,
"looking up mev-boost registration for proposer"
);
let proposer = match scheduler.get_proposer_for(payload_slot) {
Ok(proposer) => proposer,
Err(err) => {
Expand Down Expand Up @@ -365,7 +361,14 @@ impl RethNodeCommandConfig for EvaRethNodeCommandExt {
"unable to retrieve best payload from build job {err}"
);
}
None => {}
None => {
tracing::warn!(
slot = %payload_slot,
proposer = %proposer,
payload = %payload_id,
"payload not available for submission"
);
}
}
}
}));
Expand Down

0 comments on commit bf9beb8

Please sign in to comment.