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

    setup do
      cattr_accessor :logger
    end
  end
end