Logging
Move to SLF4J and rename all _log and _logger variables to LOG.
Fix all String concatenations:
_log.debug("aaa: " + xxx + " v=a" + ...);
// change to
LOG.debug("aaa: {} v=a {}", xxx, ...);
Move to SLF4J and rename all _log and _logger variables to LOG.
Fix all String concatenations:
_log.debug("aaa: " + xxx + " v=a" + ...);
// change to
LOG.debug("aaa: {} v=a {}", xxx, ...);