instance method
log_array
Ruby on Rails 5.2.8.1
Since v5.2.8.1 PrivateSignature
log_array(logger, array)
No documentation comment.
Parameters
-
loggerreq -
arrayreq
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
Defined in actionpack/lib/action_dispatch/middleware/debug_exceptions.rb line 179
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::DebugExceptions