method
enqueue_source_location
rails latest stable - Class:
ActiveJob::LogSubscriber
enqueue_source_location()private
No documentation available.
# File activejob/lib/active_job/log_subscriber.rb, line 199
def enqueue_source_location
Thread.each_caller_location do |location|
frame = backtrace_cleaner.clean_frame(location)
return frame if frame
end
nil
end