We're going to want these nice helper methods, lets share them with a parent class that matches Rails 5 practices (application level abstraction)
parent
825da6c758
commit
192f855952
@ -0,0 +1,5 @@
|
||||
class ApplicationWorker
|
||||
def info(message)
|
||||
Rails.logger.info("#{self.class.name} - #{message}")
|
||||
end
|
||||
end
|
Loading…
Reference in new issue