method
args_info
v7.1.3.4 -
Show 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