You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Isaac Liao (JIRA)" <ji...@apache.org> on 2014/02/14 10:13:21 UTC

[jira] [Updated] (AMQ-5052) DemandForwardingBridgeSupport has noisy log

     [ 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)