Skip to content

Commit 0bb491f

Browse files
authored
feat(mux): add successful num_registrations to logs (#228)
1 parent 2dc01d1 commit 0bb491f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

crates/pbs/src/mev_boost/register_validator.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,12 @@ async fn send_register_validator(
177177
return Err(err);
178178
};
179179

180-
debug!(?code, latency = ?request_latency, "registration successful");
180+
debug!(
181+
?code,
182+
latency = ?request_latency,
183+
num_registrations = registrations.len(),
184+
"registration successful"
185+
);
181186

182187
Ok(())
183188
}

0 commit comments

Comments
 (0)