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