Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2312#discussion_r224148249
--- 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 --
if this is no longer debug, it requires to user proper logger, with a
defined logger code.
---