diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-05-14 14:13:32 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-05-14 14:13:32 -0700 |
commit | 4c628e48a56920877948bd9d69d3e3caa41b5da8 (patch) | |
tree | 406049c9e9dd0c164f06d559c7e98d5395180de5 | |
parent | 8ece52f731d3ae9dfc52033e3652b8f011632877 (diff) | |
download | rails-4c628e48a56920877948bd9d69d3e3caa41b5da8.tar.gz rails-4c628e48a56920877948bd9d69d3e3caa41b5da8.tar.bz2 rails-4c628e48a56920877948bd9d69d3e3caa41b5da8.zip |
inspect the filter when displaying error messages
-rw-r--r-- | actionpack/lib/action_controller/log_subscriber.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/log_subscriber.rb b/actionpack/lib/action_controller/log_subscriber.rb index 7318c8b7ec..9279d8bcea 100644 --- a/actionpack/lib/action_controller/log_subscriber.rb +++ b/actionpack/lib/action_controller/log_subscriber.rb @@ -33,7 +33,7 @@ module ActionController end def halted_callback(event) - info("Filter chain halted as #{event.payload[:filter]} rendered or redirected") + info("Filter chain halted as #{event.payload[:filter].inspect} rendered or redirected") end def send_file(event) |