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