Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #720 from ethcore/network
Browse files Browse the repository at this point in the history
Silence UDP warnings
  • Loading branch information
gavofyork committed Mar 14, 2016
2 parents acd3984 + d3c1b54 commit 44223f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/src/network/discovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ impl Discovery {
return;
}
Err(e) => {
warn!("UDP send error: {:?}, address: {:?}", e, &data.address);
debug!("UDP send error: {:?}, address: {:?}", e, &data.address);
return;
}
}
Expand All @@ -317,7 +317,7 @@ impl Discovery {
}),
Ok(_) => None,
Err(e) => {
warn!("Error reading UPD socket: {:?}", e);
debug!("Error reading UPD socket: {:?}", e);
None
}
}
Expand Down

0 comments on commit 44223f3

Please sign in to comment.