socks.py should not print all the data it forwards

This commit is contained in:
Arvid Norberg 2014-01-17 08:57:35 +00:00
parent 20184a9a22
commit a24157c4d9
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ def forward(source, dest, name):
send(dest, CLOSE)
debug('%s hung up' % name)
return
debug('Sending (%d) %r' % (len(data), data))
# debug('Sending (%d) %r' % (len(data), data))
send(dest, data)
def spawn_forwarder(source, dest, name):