Fix noisy Block logging entry

This commit is contained in:
catbref 2019-11-12 16:04:40 +00:00
parent e1fbd3178a
commit cb7df0c5c1

View File

@ -1725,7 +1725,7 @@ public class Block {
BigDecimal foundersCount = BigDecimal.valueOf(founderAccounts.size());
BigDecimal perFounderAmount = foundersAmount.divide(foundersCount, RoundingMode.DOWN);
LOGGER.debug(() -> String.format("Shared %s of %s, remaining %s to %d founder%s, %s each",
LOGGER.trace(() -> String.format("Shared %s of %s, remaining %s to %d founder%s, %s each",
finalSharedAmount.toPlainString(), totalAmount.toPlainString(),
foundersAmount.toPlainString(), founderAccounts.size(), (founderAccounts.size() != 1 ? "s" : ""),
perFounderAmount.toPlainString()));