mirror of
https://github.com/github/rails.git
synced 2026-01-11 07:38:05 -05:00
14 lines
265 B
Ruby
14 lines
265 B
Ruby
require "active_support/core_ext/logger"
|
|
require "active_support/benchmarkable"
|
|
|
|
module AbstractController
|
|
module Logger
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
config_accessor :logger
|
|
include ActiveSupport::Benchmarkable
|
|
end
|
|
end
|
|
end
|