forked from Qortal/qortal
Skip Block.logDebugInfo() altogether if the log level is more specific than DEBUG, to avoid wasting resources.
This commit is contained in:
parent
475802afbc
commit
f4520e2752
@ -1998,6 +1998,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…
Reference in New Issue
Block a user