Autocorrect Style/GlobalStdStream offenses

This commit is contained in:
Carlos Chitty
2025-03-26 10:58:05 -04:00
parent 1109ccfc3d
commit be76e714c6
6 changed files with 6 additions and 16 deletions

View File

@@ -4,7 +4,7 @@ module Logging
private
def log(message)
@logger ||= ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
@logger ||= ActiveSupport::TaggedLogging.new(Logger.new($stdout))
@logger.tagged("ofn:sample_data") { @logger.info(message) }
end
end