Warning for missing router is now info

pull/61/head
Dennis Schwerdel 2020-02-20 22:51:22 +01:00
parent 390f217a23
commit 5c2977e612
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ mod internal {
if let SearchError::IoError(ref err) = err {
if err.kind() == io::ErrorKind::WouldBlock {
// Why this code?
warn!("Port-forwarding: no router found");
info!("Port-forwarding: no router found");
return None
}
}