Inspect the result, not .to_s

This commit is contained in:
Jon Moses 2011-05-08 13:10:58 -04:00
parent e050e7e99a
commit 677b66b3d2
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ module AbstractController::Callbacks::ClassMethods
define_method("#{filter_name}_with_logging") do
Rails.logger.debug("Entering before_filter: #{filter_name}")
send(filter_name).tap do |result|
Rails.logger.debug(" result: #{result}")
Rails.logger.debug(" result: #{result.inspect}")
end
end
end

View File

@ -1,3 +1,3 @@
module ControllerFilterLogging
VERSION = "0.0.1"
VERSION = "0.0.2"
end