mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-22 20:26:50 +00:00
Reduce logging level for deleting older PRESENCE transactions
This commit is contained in:
@@ -238,7 +238,7 @@ public class PresenceTransaction extends Transaction {
|
||||
if (transactionData.getTimestamp() >= this.transactionData.getTimestamp())
|
||||
continue;
|
||||
|
||||
LOGGER.info(() -> String.format("Deleting older PRESENCE transaction %s", Base58.encode(transactionData.getSignature())));
|
||||
LOGGER.debug(() -> String.format("Deleting older PRESENCE transaction %s", Base58.encode(transactionData.getSignature())));
|
||||
this.repository.getTransactionRepository().delete(transactionData);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user