From 7d1ca3862d511da6eb973d55834c2153c1f71cc3 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Sun, 18 Aug 2019 03:02:30 +0200 Subject: [PATCH] Make missing IPv6 a warning not an error --- src/File/FileServer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/File/FileServer.py b/src/File/FileServer.py index 5f1d9b47..91b2b103 100644 --- a/src/File/FileServer.py +++ b/src/File/FileServer.py @@ -108,7 +108,7 @@ class FileServer(ConnectionServer): self.log.debug("IPv6 supported on IP %s" % local_ipv6) return True except socket.error as err: - self.log.error("IPv6 not supported: %s" % err) + self.log.warning("IPv6 not supported: %s" % err) return False except Exception as err: self.log.error("IPv6 check error: %s" % err)