1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/abstract_controller/logger.rb

14 lines
263 B
Ruby
Raw Normal View History

2009-05-18 19:15:43 -04:00
require 'active_support/core_ext/logger'
2009-10-09 08:52:25 -04:00
require 'active_support/benchmarkable'
2009-05-14 04:56:07 -04:00
module AbstractController
module Logger
extend ActiveSupport::Concern
2009-05-07 11:29:22 -04:00
included do
cattr_accessor :logger
2009-10-09 08:52:25 -04:00
extend ActiveSupport::Benchmarkable
end
end
2009-05-14 04:56:07 -04:00
end