Even with slf4j, should you guard your logging? Submitted by caliche on June 23, 2016 - 21:38 The slf4j site, indicates that because of the parameterized logging, logging guards are not necessary.I.e. instead of writing: if(logger.isDebugEnabled()) { logger.debug("Entry number: " + i + " is " + String.valueOf(entry[i])); } You can write:Tags: slf4jloggingJava Read more about Even with slf4j, should you guard your logging?Add new comment