[
https://issues.apache.org/jira/browse/AMQ-5052?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Isaac Liao updated AMQ-5052:
----------------------------
Priority: Minor (was: Major)
> 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
>
> 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.1.5#6160)