Skip to content

Commit eb513f4

Browse files
committed
fix
1 parent 37e76dd commit eb513f4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

crates/pbs/src/routes/get_header.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub async fn handle_get_header<S: BuilderApiState, A: BuilderApi<S>>(
3535
let ua = get_user_agent(&req_headers);
3636
let ms_into_slot = ms_into_slot(params.slot, state.config.chain);
3737

38-
info!(ua, ms_into_slot);
38+
info!(ua, ms_into_slot, "new request");
3939

4040
match A::get_header(params, req_headers, state.clone()).await {
4141
Ok(res) => {

crates/pbs/src/routes/register_validator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub async fn handle_register_validator<S: BuilderApiState, A: BuilderApi<S>>(
2424

2525
let ua = get_user_agent(&req_headers);
2626

27-
info!(ua, num_registrations = registrations.len());
27+
info!(ua, num_registrations = registrations.len(), "new request");
2828

2929
if let Err(err) = A::register_validator(registrations, req_headers, state.clone()).await {
3030
state.publish_event(BuilderEvent::RegisterValidatorResponse);

crates/pbs/src/routes/status.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub async fn handle_get_status<S: BuilderApiState, A: BuilderApi<S>>(
2121

2222
let ua = get_user_agent(&req_headers);
2323

24-
info!(ua, relay_check = state.config.pbs_config.relay_check);
24+
info!(ua, relay_check = state.config.pbs_config.relay_check, "new request");
2525

2626
match A::get_status(req_headers, state.clone()).await {
2727
Ok(_) => {

crates/pbs/src/routes/submit_block.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub async fn handle_submit_block<S: BuilderApiState, A: BuilderApi<S>>(
3636
let slot_start_ms = timestamp_of_slot_start_millis(slot, state.config.chain);
3737
let ua = get_user_agent(&req_headers);
3838

39-
info!(ua, ms_into_slot = now.saturating_sub(slot_start_ms));
39+
info!(ua, ms_into_slot = now.saturating_sub(slot_start_ms), "new request");
4040

4141
match A::submit_block(signed_blinded_block, req_headers, state.clone()).await {
4242
Ok(res) => {

0 commit comments

Comments
 (0)