Reduce confusing BlockMinter log spam - issue #9

This commit is contained in:
catbref 2020-08-15 10:52:48 +01:00
parent f1efae79c8
commit 7a569f342f

View File

@ -195,7 +195,7 @@ public class BlockMinter extends Thread {
// Make sure we're the only thread modifying the blockchain
ReentrantLock blockchainLock = Controller.getInstance().getBlockchainLock();
if (!blockchainLock.tryLock(30, TimeUnit.SECONDS)) {
LOGGER.warn("Couldn't acquire blockchain lock even after waiting 30 seconds");
LOGGER.debug("Couldn't acquire blockchain lock even after waiting 30 seconds");
continue;
}