Github user gemmellr commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1601#discussion_r145906975
--- Diff:
artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/proton/handler/Events.java
---
@@ -92,6 +97,9 @@ public static void dispatch(Event event, EventHandler
handler) throws Exception
handler.onDelivery(event.getDelivery());
break;
default:
+ if (PN_TRACE_FRM) {
+ logger.info("event: " + event + " not being treated");
--- End diff --
This also doesn't feel like it should be tied to having proton trace its
frames to me, I'd just make this a regular trace logger.
---