class Pronto::Logger

def self.silent

def self.silent
  null = File.open(File::NULL, 'w')
  new(null)
end

def initialize(out)

def initialize(out)
  @out = out
end

def log(*args)

def log(*args)
  @out.puts(*args)
end