Reduced log spam

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

View File

@ -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);