Flowdock
method

flushable_loggers

Importance_0
v3.0.9 - Show latest stable - 0 notes - Class: ActiveSupport::LogSubscriber
flushable_loggers() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.