Flowdock
method

args_info

Importance_0
v6.1.7.7 - 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/log_subscriber.rb, line 108
      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
Register or log in to add new notes.