1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-25 06:55:12 +00:00
mastodon/app/workers/application_worker.rb

8 lines
142 B
Ruby
Raw Normal View History

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