0
0
Fork 0

We're going to want these nice helper methods, lets share them with a parent class that matches Rails 5 practices (application level abstraction)

This commit is contained in:
Kurtis Rainbolt-Greene 2017-04-04 21:14:37 -07:00
parent ccb6a658fd
commit 22dcadedb4
2 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class ApplicationWorker
def info(message)
Rails.logger.info("#{self.class.name} - #{message}")
end
end