[sbws/master] circuitbuilder: log circuit path with long fingerprints

commit 2be0d501eab90c04d3e981984509b0eeb3f9bb73 Author: juga0 <juga@riseup.net> Date: Sun Dec 9 11:05:04 2018 +0000 circuitbuilder: log circuit path with long fingerprints --- sbws/lib/circuitbuilder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbws/lib/circuitbuilder.py b/sbws/lib/circuitbuilder.py index 2546f0a..948e680 100644 --- a/sbws/lib/circuitbuilder.py +++ b/sbws/lib/circuitbuilder.py @@ -76,7 +76,7 @@ class CircuitBuilder: raise PathLengthException() c = self.controller timeout = self.circuit_timeout - fp_path = '[' + ' -> '.join([p[0:8] for p in path]) + ']' + fp_path = '[' + ' -> '.join([p for p in path]) + ']' log.debug('Building %s', fp_path) error = None for _ in range(0, 3):
participants (1)
-
juga@torproject.org