method

flushable_loggers

rails latest stable - Class: ActiveSupport::LogSubscriber

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

flushable_loggers()
public

No documentation available.

# File activesupport/lib/active_support/log_subscriber.rb, line 74
      def flushable_loggers
        @@flushable_loggers ||= begin
          loggers = log_subscribers.map(&:logger)
          loggers.uniq!
          loggers.select { |l| l.respond_to?(:flush) }
        end
      end