Github user jbertram commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2148#discussion_r197473040
--- Diff:
artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
---
@@ -582,6 +582,27 @@ public void handleFrame(StompFrame request) {
}
}
+ public void logFrame(StompFrame request, boolean in) {
+ if (ActiveMQStompProtocolLogger.LOGGER.isDebugEnabled()) {
--- End diff --
Understood. I'll change it.
---