From 5c2977e612a42404367542679b8b6a481d188ce3 Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Thu, 20 Feb 2020 22:51:22 +0100 Subject: [PATCH] Warning for missing router is now info --- src/port_forwarding.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/port_forwarding.rs b/src/port_forwarding.rs index 590d31b..124e381 100644 --- a/src/port_forwarding.rs +++ b/src/port_forwarding.rs @@ -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 } }