diff options
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/buffered_logger.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/buffered_logger.rb b/activesupport/lib/active_support/buffered_logger.rb index 37e6d200cd..c854599e69 100644 --- a/activesupport/lib/active_support/buffered_logger.rb +++ b/activesupport/lib/active_support/buffered_logger.rb @@ -64,11 +64,11 @@ module ActiveSupport end for severity in Severity.constants - class_eval <<-EOT + class_eval <<-EOT, __FILE__, __LINE__ def #{severity.downcase}(message = nil, progname = nil, &block) add(#{severity}, message, progname, &block) end - + def #{severity.downcase}? #{severity} >= @level end |