Commit f68cdf51 authored by Julien Muchembled's avatar Julien Muchembled

When logging that a tunnel broke, format prefix in CN format (base10/len10) instead of base2

For consistency with other log messages.
parent cb3c62d3
...@@ -91,9 +91,10 @@ class Connection(object): ...@@ -91,9 +91,10 @@ class Connection(object):
def refresh(self): def refresh(self):
# Check that the connection is alive # Check that the connection is alive
if self.process.poll() != None: if self.process.poll() is not None:
logging.info('Connection with %s has failed with return code %s', logging.info('Connection with %s/%s has failed with return code %s',
self._prefix, self.process.returncode) int(self._prefix, 2), len(self._prefix),
self.process.returncode)
if self._retry is None or len(self.address_list) <= self._retry: if self._retry is None or len(self.address_list) <= self._retry:
return False return False
logging.info('Retrying with alternate address') logging.info('Retrying with alternate address')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment