comment out comms logs

seems to work
This commit is contained in:
2024-06-22 18:18:09 +02:00
parent 223baac2e9
commit 5f46a81f1d
2 changed files with 4 additions and 4 deletions

View File

@@ -129,11 +129,11 @@ public class RemoteHostManager {
public void notifyAddr(UUID host, String addr, Integer port) {
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;
}
_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().get(host).setAddr(addr);
d.getStates().get(host).setPort(port);

View File

@@ -91,8 +91,8 @@ public class LocalPeerDiscoveryBroadcaster {
continue;
}
Log.info(getClass().getName() + "Broadcast sent to: " + broadcast.getHostAddress()
+ ", at: " + networkInterface.getDisplayName());
// Log.info(getClass().getName() + "Broadcast sent to: " + broadcast.getHostAddress()
// + ", at: " + networkInterface.getDisplayName());
}
}