mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-20 14:49:53 +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) {
|
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) {
|
public void streamStatus(String status, String id, String target) {
|
||||||
|
|||||||
Reference in New Issue
Block a user