Wraps a single log event.
# File lib/celluloid/logging/log_event.rb, line 6 def initialize(severity, message, progname, time=Time.now, &block) # This id should be ordered. For now relies on Celluloid::UUID to be ordered. # May want to use a generation/counter strategy for independence of uuid. @id = Celluloid::UUID.generate @severity = severity @message = block_given? ? yield : message @progname = progname @time = time end
Generated with the Darkfish Rdoc Generator 2.