about summary refs log tree commit diff
path: root/app/workers/application_worker.rb
blob: 436f24763d137275012c3d33038001747674ab97 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class ApplicationWorker
  def info(message)
    Rails.logger.info("#{self.class.name} - #{message}")
  end
end