diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 9172904b5..aa6859c54 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -1265,6 +1265,8 @@ def checkNullConnection(): def checkConnection(suppressOutput=False): if not any((conf.proxy, conf.tor, conf.dummy)): try: + debugMsg = "resolving hostname '%s'" % conf.hostname + logger.debug(debugMsg) socket.getaddrinfo(conf.hostname, None) except socket.gaierror: errMsg = "host '%s' does not exist" % conf.hostname