Skip to content

Commit 63c8f52

Browse files
authored
more logs (#649)
## 📝 Summary More logs for mev boost slot data ## 💡 Motivation and Context <!--- (Optional) Why is this change required? What problem does it solve? Remove this section if not applicable. --> --- ## ✅ I have completed the following steps: * [ ] Run `make lint` * [ ] Run `make test` * [ ] Added tests (if applicable)
1 parent e6a1f1e commit 63c8f52

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

crates/rbuilder/src/live_builder/payload_events/mod.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,13 @@ impl MevBoostSlotDataGenerator {
177177
continue;
178178
};
179179

180+
info!(
181+
payload_id,
182+
?slot_data,
183+
?relays,
184+
"Slot data from relays received"
185+
);
186+
180187
let mut correct_event = event;
181188
correct_event
182189
.data

crates/rbuilder/src/live_builder/payload_events/relay_epoch_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ impl RelaysForSlotData {
100100
let _span_guard = span.enter();
101101
let relay_data = match res {
102102
Ok(Some(res)) => {
103-
trace!("Got slot data from the relay");
103+
trace!(?res, "Got slot data from the relay");
104104
res
105105
}
106106
Ok(None) => {

0 commit comments

Comments
 (0)