method

args_info

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