module Celluloid::Notices
Public Class Methods
backported()
click to toggle source
# File lib/celluloid/notices.rb, line 6 def backported @@notices << [:info, "Celluloid #{Celluloid::VERSION} is running in BACKPORTED mode. [ http://git.io/vJf3J ]"] end
output()
click to toggle source
# File lib/celluloid/notices.rb, line 10 def output @@notices.each { |type, notice| Celluloid::Internals::Logger.send type, notice } end