Description
Instead using
if (LOG.isDebugEnable()) {
LOG.debug("Action name is [#0]', actionName);
}
can be reduced to
LOG.debug("Action name is [#0]', actionName);
with implementation in JdkLogger and any other implementation of Logger interface:
public void debug(String message, String... params) { if(isDebugEnable()) { // perform logging } }