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

34 lines
944 B
Ruby
Raw Normal View History

2017-07-09 13:49:52 -04:00
# frozen_string_literal: true
require "active_support/core_ext/string/filters"
require "active_support/tagged_logging"
require "active_support/logger"
2014-05-20 07:41:14 -04:00
module ActiveJob
module Logging #:nodoc:
extend ActiveSupport::Concern
2014-05-22 16:38:01 -04:00
included do
cattr_accessor :logger, default: ActiveSupport::TaggedLogging.new(ActiveSupport::Logger.new(STDOUT))
class_attribute :log_arguments, instance_accessor: false, default: true
2014-05-22 15:11:21 -04:00
2019-09-23 12:29:52 -04:00
around_enqueue { |_, block| tag_logger(&block) }
around_perform { |job, block| tag_logger(job.class.name, job.job_id, &block) }
end
2014-05-22 16:38:01 -04:00
private
def tag_logger(*tags)
if logger.respond_to?(:tagged)
tags.unshift "ActiveJob" unless logger_tagged_by_active_job?
logger.tagged(*tags) { yield }
2014-05-22 16:38:01 -04:00
else
yield
end
end
def logger_tagged_by_active_job?
logger.formatter.current_tags.include?("ActiveJob")
end
2014-05-20 07:41:14 -04:00
end
end