method
args_info
v6.1.7.7 -
Show latest stable
- Class:
ActiveJob::LogSubscriber
args_info(job)private
No documentation available.
# File activejob/lib/active_job/log_subscriber.rb, line 108
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