forked from Qortal/qortal
Reduce log spam.
This commit is contained in:
parent
210368bea0
commit
cdf47d4719
@ -653,7 +653,7 @@ public class Network {
|
|||||||
|
|
||||||
if (peersToDisconnect != null && peersToDisconnect.size() > 0) {
|
if (peersToDisconnect != null && peersToDisconnect.size() > 0) {
|
||||||
for (Peer peer : peersToDisconnect) {
|
for (Peer peer : peersToDisconnect) {
|
||||||
LOGGER.info("Forcing disconnection of peer {} because connection age ({} ms) " +
|
LOGGER.debug("Forcing disconnection of peer {} because connection age ({} ms) " +
|
||||||
"has reached the maximum ({} ms)", peer, peer.getConnectionAge(), peer.getMaxConnectionAge());
|
"has reached the maximum ({} ms)", peer, peer.getConnectionAge(), peer.getMaxConnectionAge());
|
||||||
peer.disconnect("Connection age too old");
|
peer.disconnect("Connection age too old");
|
||||||
}
|
}
|
||||||
|
@ -777,7 +777,7 @@ public class HSQLDBATRepository implements ATRepository {
|
|||||||
|
|
||||||
if (atAddresses.contains(atState.getATAddress())) {
|
if (atAddresses.contains(atState.getATAddress())) {
|
||||||
// We don't want to delete this AT state because it is still active
|
// We don't want to delete this AT state because it is still active
|
||||||
LOGGER.info("Skipping atState {} at height {}", atState.getATAddress(), atState.getHeight());
|
LOGGER.trace("Skipping atState {} at height {}", atState.getATAddress(), atState.getHeight());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user