diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2015-11-01 18:21:34 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2015-11-01 18:21:34 -0800 |
commit | e2bce29615c7418b51995aa008bc8c79849971b0 (patch) | |
tree | 6e88277f04b3d8acd0815cbd730854e10601a63c | |
parent | bd58eb6ab221a52e2a8c76aa1f24eac5a618f4d7 (diff) |
Remove aggregated algorithms log line.
All constituent parts now have their own log lines which
are printed closer to when the handshakes occur. More accurate
and more readable.
-rw-r--r-- | paramiko/transport.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index 1d3b7c78..324ed277 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -1972,10 +1972,6 @@ class Transport (threading.Thread, ClosingContextManager): self.remote_compression = agreed_remote_compression[0] self._log(DEBUG, 'Compressions agreed: local=%s' % self.local_compression) - self._log(DEBUG, 'using kex %s; server key type %s; cipher: local %s, remote %s; mac: local %s, remote %s; compression: local %s, remote %s' % - (agreed_kex[0], self.host_key_type, self.local_cipher, self.remote_cipher, self.local_mac, - self.remote_mac, self.local_compression, self.remote_compression)) - # save for computing hash later... # now wait! openssh has a bug (and others might too) where there are # actually some extra bytes (one NUL byte in openssh's case) added to |