class IO::Event::Debug::Selector

def log(message)

@asynchronous Will block the calling fiber and the entire event loop.

Log the given message.
def log(message)
	return unless @log
	
	Fiber.blocking do
		@log.puts("T+%10.1f; %s" % [now, message])
	end
end