HawaiiStateDigitalArchives / PID-webservice

Apache License 2.0
0 stars 1 forks source link

Avoid string concatenation in log methods #11

Closed dagnir closed 8 years ago

dagnir commented 8 years ago

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