1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-03-30 09:05:52 +00:00

Added trace level logging.

This commit is contained in:
CalDescent 2022-07-30 19:06:04 +01:00
parent 55f973af3c
commit c996633732

@ -219,6 +219,7 @@ public class OnlineAccountsManager {
// Check timestamp is a multiple of online timestamp modulus // Check timestamp is a multiple of online timestamp modulus
if (onlineAccountTimestamp % getOnlineTimestampModulus() != 0) { if (onlineAccountTimestamp % getOnlineTimestampModulus() != 0) {
LOGGER.trace(() -> String.format("Rejecting online account %s with invalid timestamp %d", Base58.encode(rewardSharePublicKey), onlineAccountTimestamp));
return false; return false;
} }