print connection statistics at debug log level

This commit is contained in:
woodser 2023-01-30 08:02:35 -05:00
parent a0235c8ebd
commit ef4c55e32f

View File

@ -812,7 +812,7 @@ public final class PeerManager implements ConnectionListener, PersistedDataHost
.forEach(e -> sb.append(ls).append("Connection ")
.append(counter.incrementAndGet()).append(ls)
.append(e.getConnectionStatistics().getInfo()).append(ls));
log.info(sb.toString());
log.debug(sb.toString());
}
private void printConnectedPeers() {