Skip to content

Commit

Permalink
Remove traces accidentally left from previous debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
madadam committed Aug 19, 2024
1 parent 3bcd331 commit 170da27
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/src/network/pending.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,6 @@ fn request_added(monitor: &RepositoryMonitor, key: &Key) {
monitor.index_requests_inflight.increment(1.0);
}
Key::Block(block_id) => {
tracing::warn!(?block_id, "block request added");

monitor.block_requests_sent.increment(1);
monitor.block_requests_inflight.increment(1.0);
}
Expand All @@ -211,8 +209,6 @@ fn request_removed(monitor: &RepositoryMonitor, key: &Key) {
match key {
Key::RootNode(_) | Key::ChildNodes { .. } => monitor.index_requests_inflight.decrement(1.0),
Key::Block(block_id) => {
tracing::warn!(?block_id, "block request removed");

monitor.block_requests_inflight.decrement(1.0);
}
Key::BlockOffer(_) => (),
Expand Down

0 comments on commit 170da27

Please sign in to comment.