Flowdock
method

args_info

Importance_0
v4.2.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/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
Register or log in to add new notes.