aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/abstract/logger.rb
blob: c3bccd7778704095de46ea02099e870fdc90ad8c (plain) (blame)
1
2
3
4
5
6
7
8
9
module AbstractController
  module Logger
    extend ActiveSupport::DependencyModule

    included do
      cattr_accessor :logger
    end
  end
end