tabish121 commented on code in PR #4462:
URL: https://github.com/apache/activemq-artemis/pull/4462#discussion_r1181911473
##########
artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPLargeMessage.java:
##########
@@ -130,6 +130,10 @@ private AMQPLargeMessage(final AMQPLargeMessage copy,
final SequentialFile fileCopy,
final long newID) {
super(copy);
+ if (this.messageAnnotations != null) {
+ this.messageAnnotations.getValue().forEach((a, b) ->
logger.info("{}={}", a, b));
Review Comment:
Logging every annotation on every copy seems excessive especially at INFO,
should this be lowered to TRACE to avoid spamming the logs ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]