Reduce log spam

This commit is contained in:
CalDescent 2022-01-30 19:51:49 +00:00
parent 074bfadb28
commit fa2bd40d5f

View File

@ -1519,7 +1519,7 @@ public class Controller extends Thread {
try {
ReentrantLock blockchainLock = Controller.getInstance().getBlockchainLock();
if (!blockchainLock.tryLock(2, TimeUnit.SECONDS)) {
LOGGER.info(() -> String.format("Too busy to process incoming transactions queue"));
LOGGER.trace(() -> String.format("Too busy to process incoming transactions queue"));
return;
}
} catch (InterruptedException e) {