Uploaded image for project: 'ActiveMQ Classic'
  1. ActiveMQ Classic
  2. AMQ-5052

DemandForwardingBridgeSupport has noisy log

    XMLWordPrintableJSON

Details

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

      { 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

      Attachments

        Activity

          People

            Unassigned Unassigned
            shooeugenesea.tw Isaac Liao
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: