aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/logging_job.rb
blob: 1a47601fdecc00711fb5df6644da1c0e5020feb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
class LoggingJob < ActiveJob::Base
  def perform(dummy)
    logger.info "Dummy, here is it: #{dummy}"
  end

  def job_id
    "LOGGING-JOB-ID"
  end
end