Change log level to debug to reduce verbosity

This commit is contained in:
chimp1984 2020-12-19 15:07:26 -05:00
parent cb130fcd8f
commit 1e0dcfbcbc
No known key found for this signature in database
GPG key ID: 9801B4EC591F90E3
2 changed files with 2 additions and 2 deletions

View file

@ -371,7 +371,7 @@ public class DaoStateMonitoringService implements DaoSetupService, DaoStateListe
if (this.isInConflictWithSeedNode)
log.warn("Conflict with seed nodes: {}", conflictMsg);
else if (this.isInConflictWithNonSeedNode)
log.info("Conflict with non-seed nodes: {}", conflictMsg);
log.debug("Conflict with non-seed nodes: {}", conflictMsg);
}

View file

@ -944,7 +944,7 @@ public class P2PDataStorage implements MessageListener, ConnectionListener, Pers
if (entriesToRemoveWithPayloadHash.isEmpty())
return;
log.info("Remove {} expired data entries", entriesToRemoveWithPayloadHash.size());
log.debug("Remove {} expired data entries", entriesToRemoveWithPayloadHash.size());
ArrayList<ProtectedStorageEntry> entriesForSignal = new ArrayList<>(entriesToRemoveWithPayloadHash.size());
entriesToRemoveWithPayloadHash.forEach(entryToRemoveWithPayloadHash -> {