From a24157c4d93471d8300138641bd6a3d1fb3dd9b8 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Fri, 17 Jan 2014 08:57:35 +0000 Subject: [PATCH] socks.py should not print all the data it forwards --- test/socks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/socks.py b/test/socks.py index d12f47314..ccaa443bc 100644 --- a/test/socks.py +++ b/test/socks.py @@ -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):