# File lib/new_relic/agent/error_trace_aggregator.rb, line 56
      def over_queue_limit?(message)
        over_limit = (@errors.reject{|err| err.is_internal}.length >= @capacity)
        if over_limit
          ::NewRelic::Agent.logger.warn("The error reporting queue has reached #{@capacity}. The error detail for this and subsequent errors will not be transmitted to New Relic until the queued errors have been sent: #{message}")
        end
        over_limit
      end