Files
space_game_server/lib/logging/formatter.rb
T

12 lines
209 B
Ruby

require "time"
module GameServer
module Logging
class Formatter
def call(severity, time, _, msg)
"[#{time.utc.iso8601}] #{severity} #{Context.current}#{msg}\n"
end
end
end
end