Files
openfoodnetwork/lib/tasks/sample_data/logging.rb
2025-03-26 11:16:24 -04:00

11 lines
220 B
Ruby

# frozen_string_literal: true
module Logging
private
def log(message)
@logger ||= ActiveSupport::TaggedLogging.new(Logger.new($stdout))
@logger.tagged("ofn:sample_data") { @logger.info(message) }
end
end