mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-23 20:26:49 +00:00
11 lines
220 B
Ruby
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
|