commit cb9e7090a7e5e6a2ae7504844ad76b0d527b95b9 Author: Isis Lovecruft isis@torproject.org Date: Tue Nov 5 05:47:21 2013 +0000
Remove a log statement from bridgedb.Main.
Because of the duplicate bridge problem we've been having, this log statement was causing nearly every bridge fingerprint to get recorded to the logfiles every 30 minutes (when BridgeDB is SIGHUPed).
* REMOVE a log statement. --- lib/bridgedb/Main.py | 1 - 1 file changed, 1 deletion(-)
diff --git a/lib/bridgedb/Main.py b/lib/bridgedb/Main.py index 964c737..27b1339 100644 --- a/lib/bridgedb/Main.py +++ b/lib/bridgedb/Main.py @@ -106,7 +106,6 @@ def load(cfg, splitter, clear=False): if bridge.getID() in bridges: logging.warn( "Parsed bridge that we've already added. Skipping.") - logging.debug(" Bridge: %s" % bridge.getID()) continue else: bridges[bridge.getID()] = bridge
tor-commits@lists.torproject.org