Reduce log spam.

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

View File

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