summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2015-11-25 13:06:43 +1100
committerBrian May <brian@linuxpenguins.xyz>2015-11-25 13:06:43 +1100
commit7e10fc0756863c4cbbab53b72448af612127e857 (patch)
tree542eb299dfc1bca50e52f70e4ee8be777e19c047
parent2c2ee12e5844be2cbd729b6e932505ed2b4ccd2a (diff)
Add to debugging messages.
-rw-r--r--sshuttle/client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/sshuttle/client.py b/sshuttle/client.py
index 9d3aacb..7600c40 100644
--- a/sshuttle/client.py
+++ b/sshuttle/client.py
@@ -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: