Flowdock
method

log_array

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 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 152
      def log_array(logger, array)
        lines = Array(array)

        return if lines.empty?

        if logger.formatter && logger.formatter.respond_to?(:tags_text)
          logger.fatal lines.join("\n#{logger.formatter.tags_text}")
        else
          logger.fatal lines.join("\n")
        end
      end
Register or log in to add new notes.