Remove debug datapoint that isn't being plotted (#6873)

This commit is contained in:
Sagar Dhawan 2019-11-11 14:25:25 -08:00 committed by GitHub
parent e8e13fdeeb
commit 95d6586dd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 9 deletions

View File

@ -170,15 +170,7 @@ impl RepairService {
})
.collect();
for ((to, req), repair_request) in reqs {
if let Ok(local_addr) = repair_socket.local_addr() {
datapoint_debug!(
"repair_service",
("repair_request", format!("{:?}", repair_request), String),
("to", to.to_string(), String),
("from", local_addr.to_string(), String),
);
}
for ((to, req), _) in reqs {
repair_socket.send_to(&req, to).unwrap_or_else(|e| {
info!("{} repair req send_to({}) error {:?}", id, to, e);
0