Merge pull request #720 from ethcore/network

Silence UDP warnings
This commit is contained in:
Gav Wood 2016-03-14 11:10:12 +01:00
commit 44223f3658

View File

@ -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;
}
}
@ -317,7 +317,7 @@ impl Discovery {
}),
Ok(_) => None,
Err(e) => {
warn!("Error reading UPD socket: {:?}", e);
debug!("Error reading UPD socket: {:?}", e);
None
}
}