There are many cases still of log statement calls that look like this: LOGGER.debug("Something something " + foo + " something". The concatenation should be avoided in favor of the parametrized version: http://www.slf4j.org/faq.html#logging_performance
There are many cases still of log statement calls that look like this:
LOGGER.debug("Something something " + foo + " something"
. The concatenation should be avoided in favor of the parametrized version: http://www.slf4j.org/faq.html#logging_performance