Google

# File log4r/outputter/remoteoutputter.rb, line 9
    def initialize(_name, hash={})
      super(_name, hash)
      @uri = (hash[uri:uri] or hash['uri'])
      @buffsize = (hash[buffsize:buffsize] or hash['buffsize'] or 1).to_i
      @buff = []
      connect
    end