mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-29 04:57:48 +01:00
comment out comms logs
seems to work
This commit is contained in:
@@ -129,11 +129,11 @@ public class RemoteHostManager {
|
|||||||
|
|
||||||
public void notifyAddr(UUID host, String addr, Integer port) {
|
public void notifyAddr(UUID host, String addr, Integer port) {
|
||||||
if (!persistentRemoteHostsService.existsHost(host)) {
|
if (!persistentRemoteHostsService.existsHost(host)) {
|
||||||
Log.info("Ignoring new address from unknown host " + ": addr=" + addr + " port=" + port);
|
// Log.info("Ignoring new address from unknown host " + ": addr=" + addr + " port=" + port);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_transientPeersState.runWriteLocked(d -> {
|
_transientPeersState.runWriteLocked(d -> {
|
||||||
Log.info("Updating connection info for " + host + ": addr=" + addr + " port=" + port);
|
// Log.info("Updating connection info for " + host + ": addr=" + addr + " port=" + port);
|
||||||
d.getStates().putIfAbsent(host, new TransientPeerState());
|
d.getStates().putIfAbsent(host, new TransientPeerState());
|
||||||
d.getStates().get(host).setAddr(addr);
|
d.getStates().get(host).setAddr(addr);
|
||||||
d.getStates().get(host).setPort(port);
|
d.getStates().get(host).setPort(port);
|
||||||
|
|||||||
@@ -91,8 +91,8 @@ public class LocalPeerDiscoveryBroadcaster {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.info(getClass().getName() + "Broadcast sent to: " + broadcast.getHostAddress()
|
// Log.info(getClass().getName() + "Broadcast sent to: " + broadcast.getHostAddress()
|
||||||
+ ", at: " + networkInterface.getDisplayName());
|
// + ", at: " + networkInterface.getDisplayName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user