aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware/debug_exceptions.rb')
-rw-r--r--actionpack/lib/action_dispatch/middleware/debug_exceptions.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb b/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb
index daaaed8df5..51a471fb23 100644
--- a/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb
+++ b/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb
@@ -149,6 +149,7 @@ module ActionDispatch
def log_error(request, wrapper)
logger = logger(request)
return unless logger
+
exception = wrapper.exception
trace = wrapper.application_trace
@@ -163,11 +164,11 @@ module ActionDispatch
end
end
- def log_array logger, array
- array.map { |line| logger.fatal line}
+ def log_array(logger, array)
+ array.map { |line| logger.fatal line }
end
- def logger request
+ def logger(request)
request.logger || ActionView::Base.logger || stderr_logger
end