1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Put some space for non-assets requests in development mode

- Fixes #23428.
This commit is contained in:
Prathamesh Sonpatki 2016-02-03 13:33:31 +05:30
parent 522099a13f
commit 7ca7c0ef28

View file

@ -26,6 +26,8 @@ module ActionController
end
message = "Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in #{event.duration.round}ms"
message << " (#{additions.join(" | ".freeze)})" unless additions.blank?
message << "\n\n" if Rails.env.development?
message
end
end