Skip to content

Commit

Permalink
Changed "too busy" logging from debug to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
catbref committed Mar 13, 2021
1 parent d635de4 commit ec7d4f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/qortal/controller/Controller.java
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,7 @@ private void onNetworkTransactionMessage(Peer peer, Message message) {
*/
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;
}

Expand Down

0 comments on commit ec7d4f4

Please sign in to comment.