mastodon/app/workers/application_worker.rb

6 lines
111 B
Ruby
Raw Normal View History

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