Changed "too busy" logging from debug to trace

This commit is contained in:
catbref 2021-03-13 18:30:43 +00:00
parent d635de44a8
commit ec7d4f4498

View File

@ -1217,7 +1217,7 @@ public class Controller extends Thread {
*/
ReentrantLock blockchainLock = Controller.getInstance().getBlockchainLock();
if (!blockchainLock.tryLock()) {
LOGGER.debug(() -> String.format("Too busy to import %s transaction %s from peer %s", transactionData.getType().name(), Base58.encode(transactionData.getSignature()), peer));
LOGGER.trace(() -> String.format("Too busy to import %s transaction %s from peer %s", transactionData.getType().name(), Base58.encode(transactionData.getSignature()), peer));
return;
}