Flowdock
method

log_array

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: DebugExceptions
log_array(logger, array) private

No documentation

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

Hide source
# File actionpack/lib/action_dispatch/middleware/debug_exceptions.rb, line 179
      def log_array(logger, array)
        if logger.formatter && logger.formatter.respond_to?(:tags_text)
          logger.fatal array.join("\n#{logger.formatter.tags_text}")
        else
          logger.fatal array.join("\n")
        end
      end
Register or log in to add new notes.