aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/abstract_controller/logger.rb
blob: 0b196119f4f5f7f75631490ef0c004ba2d816355 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                        
 

                         
                                 
 
               
                             
                                         
       
     
   
require "active_support/core_ext/logger"
require "active_support/benchmarkable"

module AbstractController
  module Logger
    extend ActiveSupport::Concern

    included do
      config_accessor :logger
      extend ActiveSupport::Benchmarkable
    end
  end
end