1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-07-29 13:11:22 +00:00

Reduced log spam

This commit is contained in:
CalDescent
2021-11-19 12:59:25 +00:00
parent c8b70b51c3
commit 83e0ed2b5d

@@ -164,7 +164,7 @@ public class ArbitraryDataCleanupManager extends Thread {
if (completeFileExists && allChunksExist) { if (completeFileExists && allChunksExist) {
// We have the complete file and all the chunks, so we can delete // We have the complete file and all the chunks, so we can delete
// the complete file if it has reached a certain age. // the complete file if it has reached a certain age.
LOGGER.info(String.format("Transaction %s has complete file and all chunks", LOGGER.debug(String.format("Transaction %s has complete file and all chunks",
Base58.encode(arbitraryTransactionData.getSignature()))); Base58.encode(arbitraryTransactionData.getSignature())));
ArbitraryTransactionUtils.deleteCompleteFile(arbitraryTransactionData, now, STALE_FILE_TIMEOUT); ArbitraryTransactionUtils.deleteCompleteFile(arbitraryTransactionData, now, STALE_FILE_TIMEOUT);