aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/logger.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2016-06-10 13:30:30 -0400
committerRafael Mendonça França <rafaelmfranca@gmail.com>2016-06-10 13:30:50 -0400
commit1de3db90463d2d55fccf0ce08e40bc00e5742ddf (patch)
tree49e07c4d10b75e3391d799904d254ca422e6b14e /activesupport/lib/active_support/logger.rb
parentee7de7d912036ffa1023346e9b8d0aa693cae7b2 (diff)
downloadrails-1de3db90463d2d55fccf0ce08e40bc00e5742ddf.tar.gz
rails-1de3db90463d2d55fccf0ce08e40bc00e5742ddf.tar.bz2
rails-1de3db90463d2d55fccf0ce08e40bc00e5742ddf.zip
Make sure the yielded variable is the logger
Diffstat (limited to 'activesupport/lib/active_support/logger.rb')
-rw-r--r--activesupport/lib/active_support/logger.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/logger.rb b/activesupport/lib/active_support/logger.rb
index a520e8f2f6..92b890dbb0 100644
--- a/activesupport/lib/active_support/logger.rb
+++ b/activesupport/lib/active_support/logger.rb
@@ -62,14 +62,14 @@ module ActiveSupport
if respond_to?(:silence)
super(level, &block)
else
- block.call(level)
+ block.call(self)
end
end
else
if respond_to?(:silence)
super(level, &block)
else
- block.call(level)
+ block.call(self)
end
end
end