module Cangaroo::LoggerHelper

Public Instance Methods

job_tags(tags = {}) click to toggle source
# File lib/cangaroo/logger_helper.rb, line 7
def job_tags(tags = {})
  tags.merge!(job: self.class.to_s,
              job_id: job_id,
              connection: self.class.connection.to_s)
end