# File lib/log4r/outputter/scribeoutputter.rb, line 12
    def initialize(_name, hash={})
      super(_name, hash)
      @host = (hash[:host] or hash[:host] or 'localhost')
      @port = (hash[:port] or hash[:port] or '1463')
      @category = (hash[:category] or hash[:category] or 'default')

      @client = Scribe.new("#{@host}:#{@port}", category=@category, add_newlines=false)
    end