Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2313#discussion_r217442386
--- Diff:
artemis-ra/src/main/java/org/apache/activemq/artemis/ra/inflow/ActiveMQActivation.java
---
@@ -556,7 +556,7 @@ protected void setupDestination() throws Exception {
calculatedDestinationName = spec.getQueuePrefix() +
calculatedDestinationName;
}
- logger.debug("Unable to retrieve " + destinationName + "
from JNDI. Creating a new " + destinationType.getName() + " named " +
calculatedDestinationName + " to be used by the MDB.");
+ logger.warn("Unable to retrieve " + destinationName + "
from JNDI. Creating a new " + destinationType.getName() + " named " +
calculatedDestinationName + " to be used by the MDB.");
--- End diff --
As a warn this should use a registered logger with a logger code
---