[
https://issues.apache.org/jira/browse/AMQ-5052?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Timothy Bish resolved AMQ-5052.
-------------------------------
Resolution: Fixed
Fix Version/s: 5.10.0
Changed to debug level output on trunk.
> DemandForwardingBridgeSupport has noisy log
> -------------------------------------------
>
> Key: AMQ-5052
> URL: https://issues.apache.org/jira/browse/AMQ-5052
> Project: ActiveMQ
> Issue Type: Bug
> Reporter: Isaac Liao
> Priority: Minor
> Fix For: 5.10.0
>
>
> DemandForwardingBridgeSupport#serviceRemoteConsumerAdvisory has a code:
> if (info.isBrowser()) {
> LOG.info("{} Ignoring sub from {}, browsers explicitly
> suppressed", configuration.getBrokerName(), remoteBrokerName);
> return;
> }
> the original version is:
> if (info.isBrowser()) {
> if (LOG.isDebugEnabled()) {
> LOG.info(configuration.getBrokerName() + " Ignoring sub
> from " + remoteBrokerName + ", browsers explicitly suppressed");
> }
> return;
> }
> New version code is noisy because broker always show info log when client
> browse message.
> Please change code to:
> if (info.isBrowser()) {
> LOG.debug("{} Ignoring sub from {}, browsers explicitly
> suppressed", configuration.getBrokerName(), remoteBrokerName);
> return;
> }
> Thanks
--
This message was sent by Atlassian JIRA
(v6.2#6252)