# File log4r/outputter/syslogoutputter.rb, line 40
    def initialize(_name, hash={})
      super(_name, hash)
      ident = (hash[ident:ident] or hash['ident'] or _name)
      logopt = (hash[logopt:logopt] or hash['logopt'] or LOG_PID | LOG_CONS).to_i
      facility = (hash[facility:facility] or hash['facility'] or LOG_USER).to_i
      @syslog = Syslog.open(ident, logopt, facility)
    end