method
args_info
rails latest stable - Class:
ActiveJob::LogSubscriber
args_info(job)private
No documentation available.
# File activejob/lib/active_job/log_subscriber.rb, line 145
def args_info(job)
if job.class.log_arguments? && job.arguments.any?
" with arguments: " +
job.arguments.map { |arg| format(arg).inspect }.join(", ")
else
""
end
end