aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/logging.rb
blob: 0e994a8f542278320ac89acd5ff574803d98fe89 (plain) (blame)
1
2
3
4
5
6
7
require 'active_job/log_subscriber'

module ActiveJob
  module Logging
    mattr_accessor(:logger) { ActiveSupport::Logger.new(STDOUT) }
  end
end