[tor-commits] [sbws/master] scanner: log relay long fingerprint

juga at torproject.org juga at torproject.org
Fri Dec 21 09:13:44 UTC 2018


commit b25057189991ba5550dd8f1e32a00a368ccd2a4f
Author: juga0 <juga at riseup.net>
Date:   Sun Dec 9 13:02:24 2018 +0000

    scanner: log relay long fingerprint
    
    Closes bug #28736. Bugfix v0.3.0.
---
 sbws/core/scanner.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/sbws/core/scanner.py b/sbws/core/scanner.py
index f614cc4..7246f12 100644
--- a/sbws/core/scanner.py
+++ b/sbws/core/scanner.py
@@ -180,8 +180,9 @@ def measure_relay(args, conf, destinations, cb, rl, relay):
     # Pick a destionation
     dest = destinations.next()
     if not dest:
+        # XXX: this should return a ResultError
         log.debug('Unable to get destination to measure %s %s',
-                  relay.nickname, relay.fingerprint[0:8])
+                  relay.nickname, relay.fingerprint)
         return None
     # Pick a relay to help us measure the given relay. If the given relay is an
     # exit, then pick a non-exit. Otherwise pick an exit.
@@ -202,8 +203,8 @@ def measure_relay(args, conf, destinations, cb, rl, relay):
             nicknames = [relay.nickname, helper.nickname]
     if not helper:
         # TODO: Return ResultError of some sort
-        log.debug('Unable to pick a 2nd hop to help measure %s %s',
-                    relay.nickname, relay.fingerprint[0:8])
+        log.debug('Unable to pick a 2nd relay to help measure %s (%s)',
+                  relay.fingerprint, relay.nickname)
         return None
     assert helper
     assert circ_fps is not None and len(circ_fps) == 2
@@ -260,7 +261,7 @@ def measure_relay(args, conf, destinations, cb, rl, relay):
     cb.close_circuit(circ_id)
     # Finally: store result
     log.debug('Success measurement for %s (%s) via circuit %s (%s) to %s',
-             relay.fingerprint, relay.nickname, circ_fps, nicknames, dest.url)
+              relay.fingerprint, relay.nickname, circ_fps, nicknames, dest.url)
     return [
         ResultSuccess(rtts, bw_results, relay, circ_fps, dest.url, our_nick),
     ]





More information about the tor-commits mailing list