method
args_info
v5.2.3 -
Show latest stable
- Class:
ActiveJob::Logging::LogSubscriber
args_info(job)private
No documentation available.
# File activejob/lib/active_job/logging.rb, line 97
def args_info(job)
if job.arguments.any?
" with arguments: " +
job.arguments.map { |arg| format(arg).inspect }.join(", ")
else
""
end
end