lib/celluloid/notices.rb in celluloid-0.17.0 vs lib/celluloid/notices.rb in celluloid-0.17.1
- old
+ new
@@ -2,10 +2,10 @@
module Notices
class << self
@@notices = []
def backported
- @@notices << [:debug, "Celluloid #{Celluloid::VERSION} is running in BACKPORTED mode. [ http://git.io/vJf3J ]"]
+ @@notices << [:info, "Celluloid #{Celluloid::VERSION} is running in BACKPORTED mode. [ http://git.io/vJf3J ]"]
end
def output
@@notices.each { |type, notice| Celluloid::Internals::Logger.send type, notice }
end