3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-11 17:55:50 +00:00

Added trace level logging.

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

View File

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