Github user clebertsuconic commented on the issue:
https://github.com/apache/activemq-artemis/pull/1502
the pattern I"m concerned is:
ActiveMQServerLogger.LOGGER.warn(e.getMessage(), e);
it should been:
Logger logger = Logger.getLogger(TheClass.class)
logger.warn(e.getMessage(), e);
but since you're done it.. I will just merge it.---
