Revert "Moved log from INFO to DEBUG, as now the synchronizer is on its own thread it can occur more often than before."

This reverts commit e2e87766faa0676a6bd334572743f2951918a379.
This commit is contained in:
CalDescent 2022-01-30 20:16:52 +00:00
parent 60d71863dc
commit 483e7549f8

View File

@ -865,7 +865,7 @@ public class Synchronizer extends Thread {
ReentrantLock blockchainLock = Controller.getInstance().getBlockchainLock();
if (!blockchainLock.tryLock(3, TimeUnit.SECONDS))
// Wasn't peer's fault we couldn't sync
LOGGER.debug("Synchronizer couldn't acquire blockchain lock");
LOGGER.info("Synchronizer couldn't acquire blockchain lock");
return SynchronizationResult.NO_BLOCKCHAIN_LOCK;
}