# File lib/log4r/outputter/udpoutputter.rb, line 18 def initialize(_name, hash={}) super(_name, hash) @host = hash[:hostname] @port = hash[:port] begin Logger.log_internal { "UDPOutputter will send to #{@host}:#{@port}" } @udpsock = UDPSocket.new @udpsock.connect( @host, @port ) rescue Exception => e Logger.log_internal(ERROR) { "UDPOutputter failed to create UDP socket: #{e}" } Logger.log_internal {e} self.level = OFF raise e end end