mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Less verbose Tor logging: don't log when circuits are extended.
We can get all the information we need from the other status messages.
This commit is contained in:
@@ -603,7 +603,10 @@ class TorPlugin implements DuplexPlugin, EventHandler {
|
||||
}
|
||||
|
||||
public void circuitStatus(String status, String id, String path) {
|
||||
if(LOG.isLoggable(INFO)) LOG.info("Circuit " + id + " " + status);
|
||||
if(LOG.isLoggable(INFO)) {
|
||||
if(!"EXTENDED".equals(status))
|
||||
LOG.info("Circuit " + id + " " + status);
|
||||
}
|
||||
}
|
||||
|
||||
public void streamStatus(String status, String id, String target) {
|
||||
|
||||
Reference in New Issue
Block a user