method

args_info

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: LogSubscriber
args_info(job) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.