Reduced "Ignoring hash list request" logs from DEBUG to TRACE

This commit is contained in:
CalDescent 2022-02-26 16:10:44 +00:00
parent 878394535e
commit a5c11d4c23

View File

@ -529,7 +529,7 @@ public class ArbitraryDataFileListManager {
// If we've seen this request recently, then ignore
if (arbitraryDataFileListRequests.putIfAbsent(message.getId(), newEntry) != null) {
LOGGER.debug("Ignoring hash list request from peer {} for signature {}", peer, signature58);
LOGGER.trace("Ignoring hash list request from peer {} for signature {}", peer, signature58);
return;
}