resources.report.rules.pmd.GuardLogStatement.html Maven / Gradle / Ivy
GuardLogStatement
GuardLogStatement
Whenever using a log level, one should check if the loglevel is actually enabled, or otherwise skip the associate String creation and manipulation.
This rule is defined by the following Java class: net.sourceforge.pmd.lang.java.rule.logging.GuardLogStatementRule
Example(s):
// Add this for performance
if (log.isDebugEnabled() { ...
log.debug("log something" + " and " + "concat strings");