Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1852#discussion_r165983987
--- Diff:
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/ActiveMQClientLogger.java
---
@@ -64,7 +64,7 @@
@Message(id = 211001, value = "session created", format =
Message.Format.MESSAGE_FORMAT)
void dumpingSessionStack(@Cause Exception e);
- @LogMessage(level = Logger.Level.INFO)
+ @LogMessage(level = Logger.Level.DEBUG)
--- End diff --
Probably one option would be to make NettyConnector take a boolean value
isServerConnection or something, then later
if (isServerConnection) {
ActiveMQClientLogger.LOGGER.startedServerNettyConnector(connectorType,
TransportConstants.NETTY_VERSION, host, port);
} else {
ActiveMQClientLogger.LOGGER.startedNettyConnector(connectorType,
TransportConstants.NETTY_VERSION, host, port);
}
Where the startedServerNettyConnector could log at DEBUG
---