reduced logging spam

This commit is contained in:
kennycud 2025-07-07 14:30:45 -07:00
parent 87897d7db8
commit 2167d2f8fe

View File

@ -65,7 +65,7 @@ public class ArbitraryDataFileRequestThread {
ThreadPoolExecutor threadPoolExecutor = (ThreadPoolExecutor) value;
if (threadPoolExecutor.getActiveCount() == 0) {
if (this.executorByPeer.computeIfPresent(key, (k, v) -> null) == null) {
LOGGER.info("removed executor: peer = " + key);
LOGGER.trace("removed executor: peer = " + key);
}
}
} else {