mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-20 22:59:54 +01:00
Remove redundant logging.
This commit is contained in:
@@ -63,18 +63,12 @@ class ConnectionRegistryImpl implements ConnectionRegistry {
|
|||||||
@Override
|
@Override
|
||||||
public void registerIncomingConnection(ContactId c, TransportId t,
|
public void registerIncomingConnection(ContactId c, TransportId t,
|
||||||
InterruptibleConnection conn) {
|
InterruptibleConnection conn) {
|
||||||
if (LOG.isLoggable(INFO)) {
|
|
||||||
LOG.info("Incoming connection registered: " + t);
|
|
||||||
}
|
|
||||||
registerConnection(c, t, conn, true);
|
registerConnection(c, t, conn, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void registerOutgoingConnection(ContactId c, TransportId t,
|
public void registerOutgoingConnection(ContactId c, TransportId t,
|
||||||
InterruptibleConnection conn, Priority priority) {
|
InterruptibleConnection conn, Priority priority) {
|
||||||
if (LOG.isLoggable(INFO)) {
|
|
||||||
LOG.info("Outgoing connection registered: " + t);
|
|
||||||
}
|
|
||||||
registerConnection(c, t, conn, false);
|
registerConnection(c, t, conn, false);
|
||||||
setPriority(c, t, conn, priority);
|
setPriority(c, t, conn, priority);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user