Skip to content

Commit

Permalink
feat(mux): add successful num_registrations to logs (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelBilbao authored Jan 22, 2025
1 parent 2dc01d1 commit 0bb491f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion crates/pbs/src/mev_boost/register_validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,12 @@ async fn send_register_validator(
return Err(err);
};

debug!(?code, latency = ?request_latency, "registration successful");
debug!(
?code,
latency = ?request_latency,
num_registrations = registrations.len(),
"registration successful"
);

Ok(())
}

0 comments on commit 0bb491f

Please sign in to comment.