class Log4r::UDPOutputter
Attributes
Public Class Methods
Source
# File lib/log4r/outputter/udpoutputter.rb, line 18 def initialize(_name, hash={}) super(_name, hash) @host = (hash[:hostname] or hash["hostname"]) @port = (hash[:port] or 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
Calls superclass method
Log4r::Outputter::new
Private Instance Methods
Source
# File lib/log4r/outputter/udpoutputter.rb, line 43 def write(data) @udpsock.send(data, 0) rescue Exception => e Logger.log_internal(ERROR) { "UDPOutputter failed to send data to #{@host}:#{@port}, #{e}" } end