mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-11 00:31:34 +01:00
7 lines
142 B
Ruby
7 lines
142 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationWorker
|
|
def info(message)
|
|
Rails.logger.info("#{self.class.name} - #{message}")
|
|
end
|
|
end
|