Don't log local ips on query

This commit is contained in:
shortcutme 2018-02-08 18:02:25 +01:00
parent f9091ea951
commit 498191261c
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE

View file

@ -158,7 +158,6 @@ def _get_local_ips():
# Probably we looking for an ip starting with 192
local_ips = sorted(local_ips, key=lambda a: a.startswith("192"), reverse=True)
logging.debug("Found local ips: %s" % local_ips)
return local_ips