2017-07-24 16:20:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2010-02-26 05:51:21 -05:00
|
|
|
require "active_support/benchmarkable"
|
2009-05-14 04:56:07 -04:00
|
|
|
|
2009-02-27 14:42:13 -05:00
|
|
|
module AbstractController
|
2012-04-07 16:26:41 -04:00
|
|
|
module Logger #:nodoc:
|
2009-05-28 12:35:36 -04:00
|
|
|
extend ActiveSupport::Concern
|
2009-05-07 11:29:22 -04:00
|
|
|
|
2009-09-19 11:31:47 -04:00
|
|
|
included do
|
2010-04-22 06:00:13 -04:00
|
|
|
config_accessor :logger
|
2011-12-09 14:47:33 -05:00
|
|
|
include ActiveSupport::Benchmarkable
|
2009-09-19 11:31:47 -04:00
|
|
|
end
|
2009-02-27 14:42:13 -05:00
|
|
|
end
|
2009-05-14 04:56:07 -04:00
|
|
|
end
|