Add to debugging messages.

This commit is contained in:
Brian May 2015-11-25 13:06:43 +11:00
parent 2c2ee12e58
commit 7e10fc0756

View File

@ -147,9 +147,11 @@ class MultiListener:
if self.v6:
listenip = self.v6.getsockname()
debug1('%s listening on %r.\n' % (what, listenip))
debug2('%s listening with %r.\n' % (what, self.v6))
if self.v4:
listenip = self.v4.getsockname()
debug1('%s listening on %r.\n' % (what, listenip))
debug2('%s listening with %r.\n' % (what, self.v4))
class FirewallClient: