aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/log_subscriber.rb
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-04-03 22:49:30 +0530
committerVipul A M <vipulnsward@gmail.com>2013-04-03 23:25:46 +0530
commit2282964de77eae623284c2cd47cb2f21045b290f (patch)
treec3f5838623390f8d88875c55e71a01eef6fcb570 /activesupport/lib/active_support/log_subscriber.rb
parentdb924e1257f37dff441fee7c6e2bbd8ba382d7a6 (diff)
downloadrails-2282964de77eae623284c2cd47cb2f21045b290f.tar.gz
rails-2282964de77eae623284c2cd47cb2f21045b290f.tar.bz2
rails-2282964de77eae623284c2cd47cb2f21045b290f.zip
Fix some railties test warnings
Diffstat (limited to 'activesupport/lib/active_support/log_subscriber.rb')
-rw-r--r--activesupport/lib/active_support/log_subscriber.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/log_subscriber.rb b/activesupport/lib/active_support/log_subscriber.rb
index 21a04a9152..c4b64bd1a6 100644
--- a/activesupport/lib/active_support/log_subscriber.rb
+++ b/activesupport/lib/active_support/log_subscriber.rb
@@ -53,10 +53,9 @@ module ActiveSupport
class << self
def logger
- if defined?(Rails) && Rails.respond_to?(:logger)
- @logger ||= Rails.logger
+ @logger ||= if defined?(Rails) && Rails.respond_to?(:logger)
+ Rails.logger
end
- @logger
end
attr_writer :logger