Skip to content

Commit

Permalink
ARTEMIS-4207 Removing logger.info added by accident (temporary debug)
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Mar 15, 2023
1 parent 80cc803 commit f43d3c4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,9 @@ public Pair<RoutingContext, Message> redistribute(final Message message,
// arrived the target node
// as described on https://issues.jboss.org/browse/JBPAPP-6130
final Message copyRedistribute = message.copy(storageManager.generateID());
logger.info("Message {} being copied as {}", message.getMessageID(), copyRedistribute.getMessageID());
if (logger.isDebugEnabled()) {
logger.debug("Message {} being copied as {}", message.getMessageID(), copyRedistribute.getMessageID());
}
copyRedistribute.setAddress(message.getAddress());

RoutingContext context = new RoutingContextImpl(tx);
Expand Down

0 comments on commit f43d3c4

Please sign in to comment.