1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-05-27 20:06:59 +00:00

Reduce log spam.

This commit is contained in:
CalDescent 2023-01-29 11:45:09 +00:00
parent 7af551fbc5
commit 1be3ae267e

@ -364,7 +364,10 @@ public class ArbitraryDataResource {
this.transactions = transactionDataList;
this.layerCount = transactionDataList.size();
} catch (DataException e) {
} catch (DataNotPublishedException e) {
// Ignore without logging
}
catch (DataException e) {
LOGGER.info(String.format("Repository error when fetching transactions for resource %s: %s", this, e.getMessage()));
}
}