class Async::Logger::Buffer
def initialize(prefix = nil)
def initialize(prefix = nil) @prefix = prefix super() end
def puts(*args, prefix: @prefix)
def puts(*args, prefix: @prefix) args.each do |arg| self.write(prefix) if prefix super(arg) end end