mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
9 lines
205 B
Ruby
9 lines
205 B
Ruby
module Logging
|
|
private
|
|
|
|
def log(message)
|
|
@logger ||= ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
|
|
@logger.tagged("openfoodnetwork:sample_data:load") { @logger.info(message) }
|
|
end
|
|
end
|