Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
Description
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())
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