mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
14 lines
263 B
Ruby
14 lines
263 B
Ruby
require 'active_support/core_ext/logger'
|
|
require 'active_support/benchmarkable'
|
|
|
|
module AbstractController
|
|
module Logger
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
cattr_accessor :logger
|
|
extend ActiveSupport::Benchmarkable
|
|
end
|
|
end
|
|
end
|