Browse Source

Moved chain weight calculation log from DEBUG to TRACE.

networking
CalDescent 3 years ago
parent
commit
d2649b237c
  1. 2
      src/main/java/org/qortal/block/Block.java

2
src/main/java/org/qortal/block/Block.java

@ -831,7 +831,7 @@ public class Block {
if (NTP.getTime() >= BlockChain.getInstance().getCalcChainWeightTimestamp() && parentHeight >= maxHeight) if (NTP.getTime() >= BlockChain.getInstance().getCalcChainWeightTimestamp() && parentHeight >= maxHeight)
break; break;
} }
LOGGER.debug(String.format("Chain weight calculation was based on %d blocks", blockCount)); LOGGER.trace(String.format("Chain weight calculation was based on %d blocks", blockCount));
return cumulativeWeight; return cumulativeWeight;
} }

Loading…
Cancel
Save