method

args_info

rails latest stable - Class: ActiveJob::Logging::LogSubscriber

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.0.0) is shown here.

args_info(job)
private

No documentation available.

# File activejob/lib/active_job/logging.rb, line 128
          def args_info(job)
            if job.arguments.any?
              " with arguments: " +
                job.arguments.map { |arg| format(arg).inspect }.join(", ")
            else
              ""
            end
          end