Browse Source

Skip Block.logDebugInfo() altogether if the log level is more specific than DEBUG, to avoid wasting resources.

sync-multiple-blocks
CalDescent 3 years ago
parent
commit
68544715bf
  1. 4
      src/main/java/org/qortal/block/Block.java

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

@ -2010,6 +2010,10 @@ public class Block {
private void logDebugInfo() {
try {
// Avoid calculations if possible. We have to check against INFO here, since Level.isMoreSpecificThan() confusingly uses <= rather than just <
if (LOGGER.getLevel().isMoreSpecificThan(Level.INFO))
return;
if (this.repository == null || this.getMinter() == null || this.getBlockData() == null)
return;

Loading…
Cancel
Save